2025-06-06 13:14:29 +02:00
|
|
|
{ inputs, pkgs, ... }:
|
2019-08-24 13:12:32 +02:00
|
|
|
|
|
|
|
|
{
|
2019-10-19 12:55:35 +02:00
|
|
|
imports = [
|
2025-06-06 15:27:16 +02:00
|
|
|
./base.nix
|
2020-03-13 19:41:55 +01:00
|
|
|
./shell
|
2024-01-30 20:40:31 +01:00
|
|
|
./tailscale.nix
|
2020-03-13 19:41:55 +01:00
|
|
|
./editors
|
|
|
|
|
./desktop
|
2020-03-21 16:46:18 +01:00
|
|
|
./desktop/monitors.nix
|
2020-03-13 21:18:08 +01:00
|
|
|
./git.nix
|
2023-04-15 00:46:36 +02:00
|
|
|
./element.nix
|
2020-03-13 19:41:55 +01:00
|
|
|
./signal.nix
|
2020-08-14 23:41:20 +02:00
|
|
|
./browsers
|
2020-03-13 19:41:55 +01:00
|
|
|
./planck.nix
|
2020-11-07 11:58:17 +01:00
|
|
|
./ausweisapp.nix
|
2021-08-04 22:15:17 +02:00
|
|
|
./gaming
|
2022-08-25 22:19:38 +02:00
|
|
|
./services/easyeffects.nix
|
2025-06-06 13:14:29 +02:00
|
|
|
inputs.seven-modules.homeModules.seven
|
2019-10-19 12:55:35 +02:00
|
|
|
];
|
2019-08-24 13:12:32 +02:00
|
|
|
|
2021-10-29 20:38:31 +02:00
|
|
|
programs.gpg.enable = true;
|
2020-01-19 10:45:38 +01:00
|
|
|
services.gpg-agent = {
|
|
|
|
|
enable = true;
|
2020-07-12 17:26:32 +02:00
|
|
|
enableSshSupport = true;
|
2022-01-20 17:00:17 +01:00
|
|
|
# use auth subkey's keygrip: gpg2 -K --with-keygrip
|
|
|
|
|
sshKeys = [
|
|
|
|
|
"3C48489F3B0FBB44E72180D4B1D7541C201C9987"
|
2025-05-03 00:50:17 +02:00
|
|
|
"70DBD13E3BCAF806D416647D9C51321E2F1312CF"
|
2022-01-20 17:00:17 +01:00
|
|
|
];
|
2020-07-12 22:19:52 +02:00
|
|
|
defaultCacheTtl = 600;
|
|
|
|
|
defaultCacheTtlSsh = 600;
|
2025-05-18 17:07:53 +02:00
|
|
|
pinentry.package = pkgs.pinentry-gnome3;
|
2020-01-19 10:45:38 +01:00
|
|
|
};
|
2025-05-18 17:07:53 +02:00
|
|
|
programs.zsh.initContent = ''
|
2022-03-30 00:04:35 +02:00
|
|
|
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/gnupg/S.gpg-agent.ssh
|
|
|
|
|
'';
|
2020-01-19 10:45:38 +01:00
|
|
|
|
2021-10-29 20:38:31 +02:00
|
|
|
programs.ssh.enable = true;
|
2019-08-24 13:12:32 +02:00
|
|
|
|
2022-02-08 00:02:44 +01:00
|
|
|
programs.git.defaultProfile = "private";
|
2019-08-24 13:12:32 +02:00
|
|
|
|
|
|
|
|
home.packages = with pkgs; [
|
2019-10-19 12:55:35 +02:00
|
|
|
# system
|
2019-10-19 09:14:56 +02:00
|
|
|
gparted
|
2025-12-09 22:41:14 +01:00
|
|
|
gnome-firmware
|
2025-02-13 23:16:11 +01:00
|
|
|
resources
|
2019-10-19 09:14:56 +02:00
|
|
|
|
2019-10-19 12:55:35 +02:00
|
|
|
# productivity
|
2024-01-14 17:59:31 +01:00
|
|
|
anytype
|
2020-06-18 16:24:19 +02:00
|
|
|
libreoffice-fresh
|
|
|
|
|
tabbed
|
2025-02-13 23:16:11 +01:00
|
|
|
curtail
|
2019-10-19 12:55:35 +02:00
|
|
|
|
2024-03-07 20:00:29 +01:00
|
|
|
# dev & admin
|
|
|
|
|
pods
|
2024-05-26 11:31:08 +02:00
|
|
|
# gaphor
|
2024-03-07 20:00:29 +01:00
|
|
|
|
2022-07-10 13:34:23 +02:00
|
|
|
# game dev
|
|
|
|
|
ldtk
|
|
|
|
|
pixelorama
|
|
|
|
|
|
2020-03-21 17:22:40 +01:00
|
|
|
# entertainment
|
|
|
|
|
celluloid
|
2022-03-16 17:40:30 +01:00
|
|
|
spot
|
2022-01-01 02:04:32 +01:00
|
|
|
spotify
|
2023-10-25 23:49:43 +02:00
|
|
|
unstable.calibre
|
2022-09-04 11:24:05 +02:00
|
|
|
foliate
|
2020-03-21 17:22:40 +01:00
|
|
|
|
2023-11-19 00:57:39 +01:00
|
|
|
# security & privacy
|
2025-02-13 23:16:11 +01:00
|
|
|
unstable.proton-pass
|
2025-08-27 14:28:38 +02:00
|
|
|
unstable.proton-authenticator
|
2024-04-30 23:10:05 +02:00
|
|
|
collision
|
2024-03-07 20:00:29 +01:00
|
|
|
metadata-cleaner
|
|
|
|
|
raider
|
2025-02-13 23:16:11 +01:00
|
|
|
gnome-obfuscate
|
2023-11-19 00:57:39 +01:00
|
|
|
yubikey-manager
|
2025-05-18 16:27:26 +02:00
|
|
|
yubioath-flutter
|
2022-10-16 12:28:13 +02:00
|
|
|
magic-wormhole-rs
|
2025-05-18 16:27:49 +02:00
|
|
|
localsend
|
|
|
|
|
onionshare-gui
|
2024-01-25 02:21:13 +01:00
|
|
|
transmission_4-gtk
|
2025-02-13 23:16:11 +01:00
|
|
|
unstable.qbittorrent
|
2022-05-12 11:39:12 +02:00
|
|
|
fragments
|
2020-09-23 09:39:23 +02:00
|
|
|
|
2019-10-19 12:55:35 +02:00
|
|
|
# other
|
2019-11-04 09:56:22 +01:00
|
|
|
ledger-live-desktop
|
2025-02-13 23:16:11 +01:00
|
|
|
unstable.portfolio
|
2022-05-12 11:39:12 +02:00
|
|
|
bottles
|
2023-04-09 21:37:10 +02:00
|
|
|
zotero
|
2024-03-07 20:00:29 +01:00
|
|
|
newsflash
|
2024-04-30 23:10:48 +02:00
|
|
|
emblem
|
2019-08-24 13:12:32 +02:00
|
|
|
];
|
2019-10-19 09:14:56 +02:00
|
|
|
|
2025-06-06 13:14:29 +02:00
|
|
|
seven.enable = true;
|
|
|
|
|
|
2025-05-18 17:07:53 +02:00
|
|
|
home.stateVersion = "25.05";
|
2019-08-24 13:12:32 +02:00
|
|
|
}
|