flake: pin nixpkgs channel in nix path
This commit is contained in:
parent
c94356e24f
commit
9bb834587d
11
flake.nix
11
flake.nix
|
@ -53,6 +53,11 @@
|
||||||
home-manager.users.alarsyo = import ./home;
|
home-manager.users.alarsyo = import ./home;
|
||||||
home-manager.verbose = true;
|
home-manager.verbose = true;
|
||||||
};
|
};
|
||||||
|
nix-path = {
|
||||||
|
nix.nixPath = [
|
||||||
|
"nixpkgs=${inputs.nixpkgs}"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations =
|
nixosConfigurations =
|
||||||
|
@ -76,6 +81,8 @@
|
||||||
modules = [
|
modules = [
|
||||||
./poseidon.nix
|
./poseidon.nix
|
||||||
|
|
||||||
|
self.nixosModules.nix-path
|
||||||
|
|
||||||
home-manager.nixosModule
|
home-manager.nixosModule
|
||||||
self.nixosModules.home
|
self.nixosModules.home
|
||||||
|
|
||||||
|
@ -103,6 +110,8 @@
|
||||||
modules = [
|
modules = [
|
||||||
./boreal.nix
|
./boreal.nix
|
||||||
|
|
||||||
|
self.nixosModules.nix-path
|
||||||
|
|
||||||
home-manager.nixosModule
|
home-manager.nixosModule
|
||||||
self.nixosModules.home
|
self.nixosModules.home
|
||||||
|
|
||||||
|
@ -130,6 +139,8 @@
|
||||||
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
||||||
inputs.nixos-hardware.nixosModules.common-pc-ssd
|
inputs.nixos-hardware.nixosModules.common-pc-ssd
|
||||||
|
|
||||||
|
self.nixosModules.nix-path
|
||||||
|
|
||||||
home-manager.nixosModule
|
home-manager.nixosModule
|
||||||
self.nixosModules.home
|
self.nixosModules.home
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue