From c173cad7e3b507f3415459d331c79aa469060c30 Mon Sep 17 00:00:00 2001 From: rainy Date: Tue, 22 Apr 2025 16:13:37 -0700 Subject: [PATCH] flake and some other stuff --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..b3a6c02 --- /dev/null +++ b/flake.nix @@ -0,0 +1,14 @@ +{ + description = "main config"; + + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + }; + + outputs = { nixpkgs, ... }: { + nixosConfigurations.rainix = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; + }; + }; +}