diff --git a/modules/home/home/default.nix b/modules/home/home/default.nix index 96cb5c3..9374dc8 100644 --- a/modules/home/home/default.nix +++ b/modules/home/home/default.nix @@ -9,35 +9,43 @@ home = { enableNixpkgsReleaseCheck = lib.mkDefault false; homeDirectory = lib.mkDefault "/home/${config.home.username}"; - packages = with pkgs; [ - age - clinfo - cpufetch - deadnix - lm_sensors - nano - nixfmt-rfc-style - pciutils - protonup - rsync - smartmontools - sops - tailscale - tree - usbutils - vim - vulkan-tools - wget - ] ++ (if hasDestopEnvironment then [ - chromium - firefox - gamescope - gamescope-wsi - gparted - goverlay - mission-center - vesktop - ] else [ ]); + packages = + with pkgs; + [ + age + clinfo + cpufetch + deadnix + lm_sensors + nano + nixfmt-rfc-style + pciutils + protonup + rsync + smartmontools + sops + tailscale + tree + usbutils + vim + vulkan-tools + wget + ] + ++ ( + if hasDestopEnvironment then + [ + chromium + firefox + gamescope + gamescope-wsi + gparted + goverlay + mission-center + vesktop + ] + else + [ ] + ); stateVersion = lib.mkDefault "23.11"; };