Files
nix-config/osConfigs/hosts/iso.nix
tomoron e5c52b4bc5
Some checks failed
Build iso when a new version is pushed / test (push) Failing after 2m17s
remove discord from iso build
2025-04-15 15:54:01 +02:00

26 lines
550 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
];
};
}