From 9cfccf44e1b7f461f65c7d05fda1c8c0d4a12428 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Thu, 14 Oct 2021 13:49:55 +0200 Subject: [PATCH] paul-fixe: config flake --- flake.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/flake.nix b/flake.nix index e679baf..2fc6582 100644 --- a/flake.nix +++ b/flake.nix @@ -20,6 +20,19 @@ ./systems/LoutreOS/configuration.nix ]; }; + + nixosConfigurations.paul-fixe = nixpkgs-unstable.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ({ pkgs, ... }: { + nix.nixPath = [ + "nixpkgs=${nixpkgs}" + ]; + }) + nixpkgs.nixosModules.notDetected + ./systems/PC-Fixe/configuration.nix + ]; + }; }; }