nixcfg/nixosModules/desktop/default.nix

40 lines
656 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
pkgs,
lib,
config,
...
}: {
imports = [
2024-05-11 21:36:27 -04:00
./cinnamon
./gnome
./greetd
./hyprland
2024-05-10 19:23:21 -04:00
./lightdm
./plasma
./sway
./waylandComp.nix
];
config = lib.mkIf config.ar.desktop.enable {
environment.sessionVariables.NIXOS_OZONE_WL = "1";
2024-05-27 21:39:30 -04:00
fonts.packages = with pkgs; [
liberation_ttf
2024-06-21 17:28:48 -04:00
nerdfonts
2024-05-27 21:39:30 -04:00
];
services = {
gnome.gnome-keyring.enable = true;
gvfs.enable = true; # Mount, trash, etc.
xserver = {
enable = true;
2024-05-27 21:39:30 -04:00
xkb = {
layout = "us";
variant = "altgr-intl";
};
2024-04-07 22:16:33 -04:00
excludePackages = with pkgs; [xterm];
};
};
};
2024-03-28 16:40:23 -04:00
}