bump home-manager stateversion
This commit is contained in:
parent
542c96597e
commit
f8a81ff83b
|
@ -281,9 +281,9 @@
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
homeConfigurations = forAllSystems ({ pkgs, flakes, ... }: let
|
homeConfigurations = forAllSystems ({ system, ... }: let
|
||||||
mkHome = user: home: inputs: modules: inputs.home-manager.lib.homeManagerConfiguration {
|
mkHome = user: home: inputs: modules: inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
inherit pkgs;
|
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
||||||
modules = modules ++ [{
|
modules = modules ++ [{
|
||||||
home.username = user;
|
home.username = user;
|
||||||
home.homeDirectory = home;
|
home.homeDirectory = home;
|
||||||
|
@ -292,7 +292,8 @@
|
||||||
];
|
];
|
||||||
}];
|
}];
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit inputs flakes;
|
inherit inputs;
|
||||||
|
flakes = mkFlakeView inputs system;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{ pkgs, config, ... }:
|
{ pkgs, config, ... }:
|
||||||
{
|
{
|
||||||
#nixpkgs.config.allowUnfree = true;
|
#nixpkgs.config.allowUnfree = true;
|
||||||
home.stateVersion = "23.05";
|
home.stateVersion = "23.11";
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./profiles/sops.nix
|
./profiles/sops.nix
|
||||||
|
|
Loading…
Reference in New Issue