diff --git a/hosts/isoImage/default.nix b/hosts/isoImage/default.nix index 6a78d2a..9d26cf9 100644 --- a/hosts/isoImage/default.nix +++ b/hosts/isoImage/default.nix @@ -3,14 +3,17 @@ modulesPath, inputs, username, + lib, ... }: { imports = [ "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" inputs.home-manager.nixosModules.home-manager - ../../modules/nixos/default.nix + ../common + ../../modules/nixos/desktop ../../modules/nixos/desktop/awesome + ../../modules/nixos/desktop/hyprland ]; nixpkgs.hostPlatform = "x86_64-linux"; @@ -80,5 +83,10 @@ ]; }; + users.users.${username} = { + hashedPasswordFile = lib.mkForce null; + initialPassword = username; + }; + system.stateVersion = "23.11"; } diff --git a/hosts/isoImage/home.nix b/hosts/isoImage/home.nix index 6a6b363..39cc549 100644 --- a/hosts/isoImage/home.nix +++ b/hosts/isoImage/home.nix @@ -1,7 +1,24 @@ -{...}: { +{pkgs, ...}: { imports = [ - ../common/home.nix + ../../modules/home/desktop/awesome + ../../modules/home/desktop/hyprland + ../../modules/home/picom + ../../modules/home/alacritty + ../../modules/home/wezterm + ../../modules/home/ghostty + ../../modules/home/desktop/rofi + ../../modules/home/barrier + ../../modules/home/firefox + ../../modules/home/brave + ../../modules/home/vs-code + ../../modules/home/mopidy + ../../modules/home/thunderbird ]; - home.stateVersion = "23.11"; + home.pointerCursor = { + package = pkgs.bibata-cursors; + name = "Bibata-Modern-Ice"; + }; + + home.stateVersion = "24.11"; }