From 01cc32c5d9dd7bf548eda1fe626e59e79eda72ad Mon Sep 17 00:00:00 2001 From: sils Date: Thu, 19 Jan 2023 22:17:23 +0100 Subject: Structure: Flakeify Flakes enable a lot of nice options. --- flake.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..16f49fb --- /dev/null +++ b/flake.nix @@ -0,0 +1,11 @@ +{ + outputs = { + self, + nixpkgs, + }: { + nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [./configuration.nix]; + }; + }; +} -- cgit 1.4.1