feat: add tux

This commit is contained in:
2025-01-22 00:55:50 +00:00
parent d2022efd78
commit 658274939a
6 changed files with 52 additions and 67 deletions

View File

@@ -11,10 +11,16 @@
outputs = inputs@{ nixpkgs, home-manager, nixos-wsl, ... }:
let
systems = [ "x86_64-linux" ];
hosts = [{
name = "wsl-kumatani";
isWSL = true;
}];
hosts = [
{
name = "wsl-kumatani";
isWSL = true;
}
{
name = "tux";
isWSL = false;
}
];
in {
nixosConfigurations = builtins.listToAttrs (map (host: {
name = host.name;