nixcfg/nixosModules/desktop/default.nix

70 lines
1.3 KiB
Nix

{
pkgs,
lib,
config,
...
}: {
imports = [
./cinnamon
./gnome
./greetd
./hyprland
./lightdm
./plasma
./sway
./waylandComp.nix
];
config =
lib.mkIf (
config.ar.desktop.cinnamon.enable
|| config.ar.desktop.gnome.enable
|| config.ar.desktop.hyprland.enable
|| config.ar.desktop.plasma.enable
|| config.ar.desktop.steam.enable
|| config.ar.desktop.sway.enable
) {
environment = {
sessionVariables.NIXOS_OZONE_WL = "1";
systemPackages = [pkgs.alyraffauf-wallpapers];
};
fonts.packages = with pkgs; [
liberation_ttf
nerdfonts
];
hardware.logitech.wireless = {
enable = true;
enableGraphical = true;
};
programs.system-config-printer.enable = true;
services = {
gnome.gnome-keyring.enable = true;
gvfs.enable = true; # Mount, trash, etc.
pipewire = {
enable = true;
alsa = {
enable = true;
support32Bit = true;
};
pulse.enable = true;
};
xserver = {
enable = true;
xkb = {
layout = "us";
variant = "altgr-intl";
};
excludePackages = with pkgs; [xterm];
};
};
};
}