added th0nkpad config

This commit is contained in:
2024-10-08 05:58:59 +02:00
parent 031ada6194
commit 93b7000b39
5 changed files with 196 additions and 44 deletions

View File

@@ -20,7 +20,7 @@
inherit system;
modules = [
nixos-wsl.nixosModules.default
./configuration.nix
./systems/drivebystation-nixos-wsl/configuration.nix
{
system.stateVersion = "24.05";
wsl.enable = true;
@@ -37,6 +37,25 @@
];
specialArgs = { inherit inputs; };
};
th0nkpad-nixos = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./systems/th0nkpad-nixos/configuration.nix
{
system.stateVersion = "24.05";
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.systemPackages = [
]
++ installedPackages.mkPackages.packages;
programs.nix-ld = {
enable = true;
package = pkgs.nix-ld-rs;
};
}
];
specialArgs = { inherit inputs; };
};
};
};
}