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

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