feat: add configuration for dotfiles-test in home-manager
Some checks failed
Nix Format Check / check-format (push) Failing after 37s

This commit is contained in:
Menno van Leeuwen 2025-03-11 12:01:44 +01:00
parent 7fd533f056
commit c1f8f0ef50
Signed by: vleeuwenmenno
SSH Key Fingerprint: SHA256:OJFmjANpakwD3F2Rsws4GLtbdz1TJ5tkQF0RZmF0TRE

View File

@ -92,6 +92,16 @@
hostname = "mennos-hobbypc";
};
};
"dotfiles-test" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
extraSpecialArgs = {
inherit pkgs pkgs-unstable;
isServer = true;
hostname = "dotfiles-test";
};
};
};
};
}