Update nixpkgs and home-manager

This commit is contained in:
2022-11-20 04:44:22 +00:00
parent c42e836d52
commit 0038d9c987
5 changed files with 33 additions and 28 deletions

View File

@@ -46,7 +46,7 @@ in
};
nix = {
package = pkgs.nix;
package = mkIf (!(versionAtLeast config.home.stateVersion "22.11")) pkgs.nix;
settings = {
experimental-features = [ "nix-command" "flakes" "ca-derivations" ];
max-jobs = mkDefault "auto";
@@ -242,6 +242,8 @@ in
ssh.authKeys.files = [ lib.my.sshKeyFiles.me ];
};
nix.package = mkIf (versionAtLeast config.home.stateVersion "22.05") pkgs.nix;
fonts.fontconfig.enable = true;
home = {