Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

fix(darwin/cosmeak): switch to librewolf unstable

Librewolf is force to be build from source on stable (25.11) and cause
an error blocking the complete build.

cosmeak 8926df81 d23e4c3e

+31 -10
+26 -9
flake.lock
··· 105 105 "systems": "systems_2" 106 106 }, 107 107 "locked": { 108 - "lastModified": 1772334875, 109 - "narHash": "sha256-AveYVY2plEJ62Br6iAd4fB5PDYyjJoTEmgdWRV3m+Vo=", 108 + "lastModified": 1772592046, 109 + "narHash": "sha256-+Lyl+mGVd0t2nlR6ODK/gvUHzMtF5qLlbTK+x5tCenU=", 110 110 "owner": "Infinidoge", 111 111 "repo": "nix-minecraft", 112 - "rev": "a852ac73a4f9bf8270bdac90a72a28fef5df846b", 112 + "rev": "483abf9ad6aeac1d61f2a5419ded2879f0c4795e", 113 113 "type": "github" 114 114 }, 115 115 "original": { ··· 118 118 "type": "github" 119 119 } 120 120 }, 121 + "nixos-hardware": { 122 + "locked": { 123 + "lastModified": 1771969195, 124 + "narHash": "sha256-qwcDBtrRvJbrrnv1lf/pREQi8t2hWZxVAyeMo7/E9sw=", 125 + "owner": "NixOS", 126 + "repo": "nixos-hardware", 127 + "rev": "41c6b421bdc301b2624486e11905c9af7b8ec68e", 128 + "type": "github" 129 + }, 130 + "original": { 131 + "owner": "NixOS", 132 + "ref": "master", 133 + "repo": "nixos-hardware", 134 + "type": "github" 135 + } 136 + }, 121 137 "nixpkgs": { 122 138 "locked": { 123 139 "lastModified": 1769461804, ··· 151 167 }, 152 168 "nixpkgs_2": { 153 169 "locked": { 154 - "lastModified": 1772047000, 155 - "narHash": "sha256-7DaQVv4R97cii/Qdfy4tmDZMB2xxtyIvNGSwXBBhSmo=", 170 + "lastModified": 1772598333, 171 + "narHash": "sha256-YaHht/C35INEX3DeJQNWjNaTcPjYmBwwjFJ2jdtr+5U=", 156 172 "owner": "nixos", 157 173 "repo": "nixpkgs", 158 - "rev": "1267bb4920d0fc06ea916734c11b0bf004bbe17e", 174 + "rev": "fabb8c9deee281e50b1065002c9828f2cf7b2239", 159 175 "type": "github" 160 176 }, 161 177 "original": { ··· 171 187 "flake-parts": "flake-parts", 172 188 "hjem": "hjem", 173 189 "nix-minecraft": "nix-minecraft", 190 + "nixos-hardware": "nixos-hardware", 174 191 "nixpkgs": "nixpkgs_2", 175 192 "unstable": "unstable" 176 193 } ··· 252 269 }, 253 270 "unstable": { 254 271 "locked": { 255 - "lastModified": 1772198003, 256 - "narHash": "sha256-I45esRSssFtJ8p/gLHUZ1OUaaTaVLluNkABkk6arQwE=", 272 + "lastModified": 1772624091, 273 + "narHash": "sha256-QKyJ0QGWBn6r0invrMAK8dmJoBYWoOWy7lN+UHzW1jc=", 257 274 "owner": "nixos", 258 275 "repo": "nixpkgs", 259 - "rev": "dd9b079222d43e1943b6ebd802f04fd959dc8e61", 276 + "rev": "80bdc1e5ce51f56b19791b52b2901187931f5353", 260 277 "type": "github" 261 278 }, 262 279 "original": {
+2
modules/hosts/njord/configuration.nix
··· 5 5 cosmeak 6 6 ]; 7 7 8 + nixpkgs.overlays = [ inputs.self.overlays.unstable ]; 9 + 8 10 # Enable sudo via TouchID 9 11 security.pam.services.sudo_local.touchIdAuth = true; 10 12
+3 -1
modules/users/cosmeak.nix
··· 10 10 helix # Code Editor 11 11 just # Cmd helper 12 12 lazygit # Git TUI 13 - librewolf # Web browser 14 13 obsidian # Note editor 15 14 spotify # Music player 16 15 starship # Customizable shell prompt ··· 34 33 packages = with pkgs; [ 35 34 ghostty # Terminal emulator 36 35 heroic # Game Launcher (Epic Games, GOG) 36 + librewolf # Web browser 37 37 # obs-studio # Recording App 38 38 prismlauncher # Minecraft launcher 39 39 vesktop # Discord client ··· 57 57 podman # container tool -> replacement of docker 58 58 podman-compose # compose provider for podman 59 59 raycast # replacement for spotlight 60 + 61 + unstable.librewolf 60 62 ] ++ (sharedPackages pkgs); 61 63 }) 62 64 ];