first flake commit

This commit is contained in:
Larra Emily Sarah
2025-12-01 19:25:45 +01:00
commit 7473e324f9
4 changed files with 235 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosConfigurations.ArcticFox = nixpkgs.lib.nixosSystem {
modules = [ ./configuration.nix ];
};
};
}