diff options
| author | caley <u65487754@gmail.com> | 2026-05-20 01:19:18 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-20 01:19:18 +0000 |
| commit | 586bd3baadb5c54c6d55164f95e7ba257f5f5db9 (patch) | |
| tree | 4e28bdcd87976f77a7e69eb9925abe1e3c6527bb /nixos/flake.nix | |
| parent | e56427e82e67b690071dfa68d0bccd6648222380 (diff) | |
Create flake.nix
Diffstat (limited to 'nixos/flake.nix')
| -rw-r--r-- | nixos/flake.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix new file mode 100644 index 0000000..a548ab9 --- /dev/null +++ b/nixos/flake.nix @@ -0,0 +1,18 @@ +{ + description = "cat"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + }; + + outputs = { self, nixpkgs, ... }@inputs: { + nixosConfigurations = { + cat = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./configuration.nix + ]; + }; + }; + }; +} |
