summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcaley <u65487754@gmail.com>2026-05-20 01:19:18 +0000
committerGitHub <noreply@github.com>2026-05-20 01:19:18 +0000
commit586bd3baadb5c54c6d55164f95e7ba257f5f5db9 (patch)
tree4e28bdcd87976f77a7e69eb9925abe1e3c6527bb
parente56427e82e67b690071dfa68d0bccd6648222380 (diff)
Create flake.nix
-rw-r--r--nixos/flake.nix18
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
+ ];
+ };
+ };
+ };
+}