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

19 lines
316 B
Nix
Raw Normal View History

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