[fugitive] Add config for an impermanent system

This commit is contained in:
ctsk
2023-08-20 08:48:31 +02:00
commit 8bc595175d
7 changed files with 193 additions and 0 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
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
];
};
};
};
}