24 lines
487 B
Nix
24 lines
487 B
Nix
{
|
|
description = "Personal Infrastructure stuff?";
|
|
|
|
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-23.05";
|
|
impermanence.url = "github:nix-community/impermanence";
|
|
};
|
|
|
|
|
|
outputs = {self, nixpkgs, impermanence}: {
|
|
|
|
nixosConfigurations = {
|
|
fugitive = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
impermanence.outputs.nixosModules.impermanence
|
|
./lib/systems/fugitive
|
|
];
|
|
};
|
|
};
|
|
|
|
};
|
|
} |