Files
nix-config/osConfigs/hosts/iso.nix
tomoron c766b08973
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m41s
remove full home config from iso
2025-07-16 20:07:12 +02:00

26 lines
558 B
Nix

{lib, inputs, pkgs, ... }:
{
imports = [
../packages.nix
];
users.users.tom = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" ];
initialHashedPassword = "";
};
services.getty.autologinUser = lib.mkForce "tom";
services.getty.helpLine = lib.mkForce "";
# programs.hyprland.enable = true;
# home-manager.extraSpecialArgs = { inherit inputs; inherit pkgs; isOs = true;};
# home-manager.users.tom = {
# imports = [
# ../../homeConfigs/home.nix
# ../../homeConfigs/hosts/iso.nix
# ];
# };
}