diff options
| author | Christian <[email protected]> | 2026-01-01 17:25:13 -0600 |
|---|---|---|
| committer | Christian <[email protected]> | 2026-01-01 17:26:07 -0600 |
| commit | 39740c6f9a4a9ba5655fe77c0613cc86478571cb (patch) | |
| tree | a2b1e8c8ad254f20a028d2d613797790547d1205 /flake.nix | |
Initial commit
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..0b4ace0 --- /dev/null +++ b/flake.nix @@ -0,0 +1,17 @@ +{ + description = "NixOS Flake Configuration"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; + }; + + outputs = { self, nixpkgs, ... }: { + nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + + modules = [ + ./configuration.nix + ]; + }; + }; +} |
