init titan
This commit is contained in:
parent
0e4e2d7a8f
commit
c24f8a0539
5 changed files with 145 additions and 0 deletions
17
flake.nix
17
flake.nix
|
@ -12,6 +12,11 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
treefmt.url = "github:numtide/treefmt-nix";
|
||||
disko = {
|
||||
url = "github:nix-community/disko/latest";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
nixpkgs-borg.url = "github:cything/nixpkgs/borg";
|
||||
nixpkgs-master.url = "github:nixos/nixpkgs/master";
|
||||
};
|
||||
|
@ -22,6 +27,7 @@
|
|||
nixpkgs,
|
||||
home-manager,
|
||||
treefmt,
|
||||
disko,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
|
@ -110,6 +116,17 @@
|
|||
inputs.sops-nix.nixosModules.sops
|
||||
];
|
||||
};
|
||||
|
||||
titan = lib.nixosSystem {
|
||||
specialArgs = { inherit inputs outputs; };
|
||||
modules = [
|
||||
{
|
||||
nixpkgs = { inherit pkgs; };
|
||||
}
|
||||
./hosts/titan
|
||||
disko.nixosModules.disko
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
homeConfigurations = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue