From 195f1a774a98de051fb9ef3276297410a1cf7577 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 10 Apr 2024 14:52:37 +0300 Subject: [PATCH] Flake : Add basic system. --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flake.nix b/flake.nix index 8673499b..66263335 100644 --- a/flake.nix +++ b/flake.nix @@ -169,6 +169,14 @@ }; # List of all hosts bellow. + nixosConfigurations.basic = self.mkHost { + hostname = "basic"; + system = "x86_64-linux"; + modules = [ + ({ pkgs, ... }: { boot.kernelPackages = nixpkgs.lib.mkForce pkgs.linuxPackages; }) + ]; + }; + nixosConfigurations.dasha = self.mkHost { hostname = "dasha"; system = "x86_64-linux";