Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(gaming): add ananicy-cpp

cosmeak 4a08e60d a285adf4

+11 -21
+1 -1
modules/features/bootloaders/grub.nix modules/features/bootloader.nix
··· 1 1 { 2 - flake.nixosModules.grub = { ... }: { 2 + flake.nixosModules.bootloader = { ... }: { 3 3 boot.loader.grub.enable = true; 4 4 boot.loader.grub.device = "nodev"; 5 5 boot.loader.grub.useOSProber = true;
-8
modules/features/bootloaders/systemd-boot.nix
··· 1 - { 2 - # EFI Bootloader 3 - flake.nixosModules.systemd-boot = { ... }: { 4 - boot.loader.systemd-boot.enable = true; 5 - boot.loader.efi.canTouchEfiVariables = true; 6 - boot.loader.systemd-boot.configurationLimit = 10; 7 - }; 8 - }
-7
modules/features/desktops/budgie.nix
··· 1 - { 2 - flake.nixosModules.budgie-desktop = { ... }: { 3 - services.xserver.enable = true; 4 - services.xserver.desktopManager.budgie.enable = true; 5 - services.xserver.displayManager.lightdm.enable = true; 6 - }; 7 - }
+5
modules/features/gaming.nix
··· 7 7 nixpkgs.overlays = [ inputs.nix-cachyos-kernel.overlays.pinned ]; 8 8 boot.kernelPackages = pkgs.cachyosKernels.linuxPackages-cachyos-latest; 9 9 10 + # User ananicy 11 + services.ananicy.enable = true; 12 + services.ananicy.package = pkgs.ananicy-cpp; 13 + services.ananicy.rulesProvider = pkgs.ananicy-rules-cachyos; 14 + 10 15 # Steam configuration 11 16 hardware.graphics.enable32Bit = true; 12 17 programs.steam = {
+1 -1
modules/hosts/andhrimnir/configuration.nix
··· 5 5 with inputs.self.nixosModules; 6 6 with inputs.self.factory; 7 7 [ 8 - grub 8 + bootloader 9 9 nvidia-gpu 10 10 kde-desktop 11 11 auto-upgrade
+2 -2
modules/hosts/loki/configuration.nix
··· 7 7 with inputs.self.nixosModules; 8 8 with inputs.self.factory; 9 9 [ 10 - systemd-boot 10 + bootloader 11 11 audio 12 12 nvidia-gpu 13 - budgie-desktop 13 + cinnamon-desktop 14 14 cosmeak 15 15 screen-recording 16 16 (autoLogin "cosmeak")
+1 -1
modules/hosts/nanna/configuration.nix
··· 6 6 with inputs.self.factory; 7 7 [ 8 8 inputs.nixos-hardware.nixosModules.lenovo-legion-y530-15ich 9 - grub 9 + bootloader 10 10 cinnamon-desktop 11 11 auto-upgrade 12 12 juliette
+1 -1
modules/hosts/sunna/configuration.nix
··· 2 2 { 3 3 flake.nixosModules.sunna = { ... }: { 4 4 imports = with inputs.self.nixosModules; [ 5 - systemd-boot 5 + bootloader 6 6 nvidia-gpu 7 7 kde-desktop 8 8 ];