โ„๏ธ My personnal NixOS configuration
nix-flake nixos-configuration linux dotfiles flake nix nix-config nixos nixos-flake linux-desktop

ใ€Œ๐Ÿ—๏ธใ€ wip: moved to lix

+12 -1
+12 -1
hosts/home.nix
··· 32 32 programs.zsh.enable = true; 33 33 nix.settings = { 34 34 trusted-users = [ "@wheel" ]; 35 - trusted-substituters = [ "https://prismlauncher.cachix.org" ]; 35 + trusted-substituters = [ "https://prismlauncher.cachix.org" ]; 36 36 trusted-public-keys = [ 37 37 "prismlauncher.cachix.org-1:9/n/FGyABA2jLUVfY+DEp4hKds/rwO+SCOtbOkDzd+c=" 38 38 ]; 39 39 }; 40 + nixpkgs.overlays = [ 41 + (final: prev: { 42 + inherit (prev.lixPackageSets.stable) 43 + nixpkgs-review 44 + nix-eval-jobs 45 + nix-fast-build 46 + colmena 47 + ; 48 + }) 49 + ]; 40 50 51 + nix.package = pkgs.lixPackageSets.stable.lix; 41 52 }