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

28 lines
512 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-09-26 17:15:58 +00:00
fonts.fontconfig = {
enable = true;
defaultFonts = {
emoji = [];
monospace = [];
sansSerif = ["Atkinson Hyperlegible"];
serif = [];
};
};
2024-03-06 10:09:02 +00:00
};
}