nix-configs/modules/desktop-environment/home/default.nix
2024-09-26 19:15:58 +02:00

27 lines
512 B
Nix

{...}: {
home-manager.users.jade = {...}: {
imports = [
./notifications.nix
./terminal.nix
./compositing.nix
./panels
./xmonad
./sway
];
services.gpg-agent = {
enable = true;
enableNushellIntegration = true;
enableSshSupport = true;
};
fonts.fontconfig = {
enable = true;
defaultFonts = {
emoji = [];
monospace = [];
sansSerif = ["Atkinson Hyperlegible"];
serif = [];
};
};
};
}