Full fork to new repo

This commit is contained in:
Jimbo 2025-02-28 12:08:04 -05:00
parent fcc6d5cd96
commit ec3abf9fd4
41 changed files with 1034 additions and 0 deletions

35
flake.nix Normal file
View file

@ -0,0 +1,35 @@
{
inputs = {
# System inputs
nixpkgs.url = "nixpkgs/nixos-24.11";
unstable.url = "nixpkgs/nixos-unstable";
impermanence.url = "github:nix-community/impermanence";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
# Home inputs
home-manager = {
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
unstable,
impermanence,
disko,
home-manager,
...
}@inputs:
{
nixosConfigurations.rubble = nixpkgs.lib.nixosSystem {
modules = [ ./host ];
specialArgs = inputs;
};
};
}