From 3d54e3d2d8041497f415167c482167260c97faf2 Mon Sep 17 00:00:00 2001 From: Forestcat Date: Thu, 16 Nov 2023 22:34:57 +0100 Subject: [PATCH] added configs --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..f0591e5 --- /dev/null +++ b/flake.nix @@ -0,0 +1,12 @@ +{ + inputs.nixpkgs.url = "github:NixOS/nixpkgs"; + inputs.home-manager.url = "github:nix-community/home-manager"; + + outputs = { self, nixpkgs, ... }@attrs: { + nixosConfigurations.fnord = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = attrs; + modules = [ ./configuration.nix ]; + }; + }; +} \ No newline at end of file