kilgharrah: Move to nixpkgs unstable
This commit is contained in:
parent
55c622408b
commit
303335ee3b
1 changed files with 51 additions and 47 deletions
24
flake.nix
24
flake.nix
|
@ -114,7 +114,12 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.colmena = {
|
flake.colmena =
|
||||||
|
let
|
||||||
|
home-manager = inputs.home-manager.nixosModules.home-manager;
|
||||||
|
home-manager-unstable = inputs.home-manager-unstable.nixosModules.home-manager;
|
||||||
|
in
|
||||||
|
{
|
||||||
meta = {
|
meta = {
|
||||||
nixpkgs = import nixpkgs-unstable {
|
nixpkgs = import nixpkgs-unstable {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
@ -123,7 +128,7 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
nodeNixpkgs = {
|
nodeNixpkgs = {
|
||||||
kilgharrah = import nixpkgs { system = "x86_64-linux"; };
|
kilgharrah = import nixpkgs-unstable { system = "x86_64-linux"; };
|
||||||
tohru = import nixpkgs { system = "x86_64-linux"; };
|
tohru = import nixpkgs { system = "x86_64-linux"; };
|
||||||
elucredassa = import nixpkgs-small { system = "x86_64-linux"; };
|
elucredassa = import nixpkgs-small { system = "x86_64-linux"; };
|
||||||
yevaud = import nixpkgs-small { system = "x86_64-linux"; };
|
yevaud = import nixpkgs-small { system = "x86_64-linux"; };
|
||||||
|
@ -143,7 +148,6 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
inputs.lix-module.nixosModules.default
|
inputs.lix-module.nixosModules.default
|
||||||
inputs.home-manager.nixosModules.home-manager
|
|
||||||
inputs.agenix.nixosModules.default
|
inputs.agenix.nixosModules.default
|
||||||
inputs.birdsong.nixosModules.default
|
inputs.birdsong.nixosModules.default
|
||||||
./common
|
./common
|
||||||
|
@ -156,13 +160,13 @@
|
||||||
tohru.deployment.targetHost = null; # disable remote deployment
|
tohru.deployment.targetHost = null; # disable remote deployment
|
||||||
elucredassa.deployment.targetHost = "10.127.3.2"; # no fqdn yet
|
elucredassa.deployment.targetHost = "10.127.3.2"; # no fqdn yet
|
||||||
|
|
||||||
kilgharrah.imports = [ ./hosts/kilgharrah ];
|
kilgharrah.imports = [ ./hosts/kilgharrah home-manager-unstable ];
|
||||||
tohru.imports = [ ./hosts/tohru ];
|
tohru.imports = [ ./hosts/tohru home-manager ];
|
||||||
elucredassa.imports = [ ./hosts/elucredassa ];
|
elucredassa.imports = [ ./hosts/elucredassa home-manager ];
|
||||||
yevaud.imports = [ ./hosts/yevaud ];
|
yevaud.imports = [ ./hosts/yevaud home-manager ];
|
||||||
orm.imports = [ ./hosts/orm ];
|
orm.imports = [ ./hosts/orm home-manager ];
|
||||||
kalessin.imports = [ ./hosts/kalessin ];
|
kalessin.imports = [ ./hosts/kalessin home-manager ];
|
||||||
tehanu.imports = [ ./hosts/tehanu ];
|
tehanu.imports = [ ./hosts/tehanu home-manager ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue