Compare commits

..

13 commits

Author SHA1 Message Date
Andre 3b0a0ef579 refactor(system): fix conflicts between desktop environment login managers
Some checks failed
Code Check / Run nixfmt and statix (push) Has been cancelled
Code Check / Run nixfmt and statix (pull_request) Has been cancelled
2024-07-11 18:13:05 -04:00
Andre 934ad9f7d7 fix(system): fix aux.system.ui.desktops namespacing in desktop and flatpak modules 2024-07-11 18:13:05 -04:00
Andre 491bd8a838 fix(system): add initrd settings for tpm2 2024-07-11 18:13:05 -04:00
Andre 62041695e6 chore(system): update video driver syntax to match upstream 2024-07-11 18:13:05 -04:00
Andre a83275e048 refactor(system): simplify Nix config file 2024-07-11 18:13:05 -04:00
Andre 553f36e003 feat(system): use Lix in place of Nix in system template 2024-07-11 18:13:05 -04:00
Andre 2c6d1308dd chore(system): clean up template readme and options for readability 2024-07-11 18:13:05 -04:00
Andre 509b6727bf chore(system): remove Aux libs as they're still in Labs 2024-07-11 18:13:05 -04:00
Andre a36cd617f7 feat(system): add Flatpak support 2024-07-11 18:13:05 -04:00
Andre f534c95342 feat(system): add Nvidia, Intel, and AMD GPU support to new user template 2024-07-11 18:13:04 -04:00
Andre 5d1480fe3b chore(system): change template namespace from 'aux' to 'aux.system' 2024-07-11 18:12:23 -04:00
Andre b01f62a5f2 feat(system): add modules for bluetooth, networking, system config, Budgie, Hyprland, and XFCE to system template 2024-07-11 18:12:23 -04:00
Andre 5c79ab34ba feat(system): initial commit for new user system templates 2024-07-11 18:12:21 -04:00
2 changed files with 3 additions and 3 deletions

View file

@ -57,7 +57,7 @@ in
aux.system.allowUnfree = true; aux.system.allowUnfree = true;
services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ]; services.xserver.videoDrivers = lib.mkDefault [ "nvidia" ];
hardware.opengl.extraPackages = with pkgs; [ vaapiVdpau ]; hardware.graphics.extraPackages = with pkgs; [ vaapiVdpau ];
hardware.nvidia = { hardware.nvidia = {
modesetting.enable = true; modesetting.enable = true;

View file

@ -41,8 +41,8 @@ in
# Install additional quality-of-life packages # Install additional quality-of-life packages
systemPackages = with pkgs; [ systemPackages = with pkgs; [
gnome.gnome-tweaks # Gnome tweak tool gnome-tweaks # Gnome tweak tool
gnome.gnome-themes-extra # Additional themes gnome-themes-extra # Additional themes
]; ];
}; };