diff options
Diffstat (limited to 'nixos')
| -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 + ]; + }; + }; + }; +} |
