init titan

This commit is contained in:
cy 2024-12-28 22:16:46 -05:00
parent 0e4e2d7a8f
commit c24f8a0539
5 changed files with 145 additions and 0 deletions

View file

@ -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 = {