framework
This commit is contained in:
parent
42099d49b4
commit
aca4caf02c
17 changed files with 279 additions and 33 deletions
18
flake.nix
18
flake.nix
|
|
@ -22,6 +22,10 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-utils.follows = "flake-utils";
|
||||
};
|
||||
disko = {
|
||||
url = "github:nix-community/disko/latest";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs =
|
||||
|
|
@ -29,6 +33,7 @@
|
|||
self,
|
||||
agenix,
|
||||
colmena,
|
||||
disko,
|
||||
flake-utils,
|
||||
home-manager,
|
||||
nixos-hardware,
|
||||
|
|
@ -78,6 +83,19 @@
|
|||
overlays
|
||||
];
|
||||
};
|
||||
|
||||
"fw" = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = specialArgs // {
|
||||
host = "fw";
|
||||
};
|
||||
modules = [
|
||||
./host/fw
|
||||
./home
|
||||
./common
|
||||
overlays
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
colmenaHive = colmena.lib.makeHive {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue