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: update andhrimnir host and neoxa user to old values

+15 -2
+8 -1
modules/hosts/andhrimnir/configuration.nix
··· 1 1 { inputs, ... }: 2 2 let 3 - configuration = { ... }: { 3 + configuration = { pkgs, ... }: { 4 4 imports = with inputs.self.modules.nixos; [ 5 5 system-boot-grub 6 6 system-garbageCollector ··· 11 11 ]; 12 12 13 13 networking.networkmanager.enable = true; 14 + 15 + programs.steam.enable = true; 16 + programs.firefox = true; 17 + environment.systemPackages = with pkgs; [ 18 + git 19 + just 20 + ]; 14 21 }; 15 22 in 16 23 {
+7 -1
modules/users/neoxa.nix
··· 10 10 isNormalUser = true; 11 11 extraGroups = [ "networkmanager" "wheel" ]; 12 12 packages = with pkgs; [ 13 + blender 14 + davinci-resolve 15 + ghostty 13 16 heroic 14 17 librewolf 15 - lutris 18 + obs-studio 19 + prismlauncher 16 20 spotify 21 + thonny 22 + unityhub 17 23 vesktop 18 24 vscodium 19 25 ];