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 + ]; + }; }; }