nixcfg/nixosModules/desktop/default.nix
Aly Raffauf 56427dd1aa
Some checks are pending
flakehub / flakehub-publish (push) Waiting to run
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
drop cinnamon (#56)
* cinnamon: drop modules

* home/theme: remove cinnamon theming

* cinnamon: remove module references
2024-07-21 12:25:59 -04:00

59 lines
1 KiB
Nix

{
config,
lib,
pkgs,
...
}: {
imports = [
./gnome
./greetd
./hyprland
./sway
./waylandComp.nix
];
config =
lib.mkIf (
config.ar.desktop.gnome.enable
|| config.ar.desktop.hyprland.enable
|| config.ar.desktop.steam.enable
|| config.ar.desktop.sway.enable
) {
environment = {
sessionVariables.NIXOS_OZONE_WL = "1";
};
fonts.packages = with pkgs; [
liberation_ttf
];
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;
excludePackages = with pkgs; [xterm];
};
};
};
}