This commit is contained in:
2023-06-01 14:39:07 -05:00
commit e9d12acdd5
4 changed files with 163 additions and 0 deletions

16
flake.nix Normal file
View File

@ -0,0 +1,16 @@
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosConfigurations = {
eve-psr-nix0 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
};
}