nix-configs/modules/desktop-environment/home/default.nix

19 lines
316 B
Nix
Raw Normal View History

2024-03-06 11:09:02 +01:00
{...}: {
home-manager.users.jade = {...}: {
imports = [
./notifications.nix
./terminal.nix
./compositing.nix
./panels
./xmonad
2024-06-12 11:11:13 +02:00
./sway
2024-03-06 11:09:02 +01:00
];
2024-06-12 13:24:47 +02:00
services.gpg-agent = {
enable = true;
enableNushellIntegration = true;
enableSshSupport = true;
};
2024-03-06 11:09:02 +01:00
};
}