From 790d749ff829beba917376e7f0eb68a1b603f1f8 Mon Sep 17 00:00:00 2001 From: yaroslav Date: Mon, 9 Jun 2025 10:00:40 +0300 Subject: [PATCH] more fragmentation of HM config --- flake.nix | 4 +++- home/yaroslav/home.nix | 10 ---------- home/yaroslav/home_gui.nix | 14 ++++++++++++++ 3 files changed, 17 insertions(+), 11 deletions(-) create mode 100644 home/yaroslav/home_gui.nix diff --git a/flake.nix b/flake.nix index 3f44e78..c41682c 100644 --- a/flake.nix +++ b/flake.nix @@ -49,6 +49,7 @@ ./hosts/generic/unfree_allow.nix ./hosts/Aphelion/hardware-Aphelion.nix ./hosts/Aphelion/nvidia.nix + ./hosts/Aphelion/sunshine.nix ./desktop/gnome.nix ./misc/disable_suspend.nix ./home/yaroslav/steam.nix @@ -57,7 +58,8 @@ home-manager.useUserPackages = true; home-manager.users.yaroslav = { imports = [ - ./home/yaroslav/Aphelion/Aphelion.nix + ./home/yaroslav/Aphelion/Aphelion.nix + ./home/yaroslav/home_gui.nix ]; }; } diff --git a/home/yaroslav/home.nix b/home/yaroslav/home.nix index ae40528..6d77d00 100644 --- a/home/yaroslav/home.nix +++ b/home/yaroslav/home.nix @@ -52,29 +52,19 @@ in "steam" ]; home.packages = with pkgs; [ - firefox mc htop yt-dlp zsh-powerlevel10k meslo-lgs-nf - keepassxc - remmina nekoray python3 - prismlauncher - kdePackages.kcalc - ayugram-desktop distrobox - thunderbird scrcpy android-tools linux-wifi-hotspot nmap nil - obs-studio - nicotine-plus - qbittorrent ]; xdg.enable = true; diff --git a/home/yaroslav/home_gui.nix b/home/yaroslav/home_gui.nix new file mode 100644 index 0000000..0338cba --- /dev/null +++ b/home/yaroslav/home_gui.nix @@ -0,0 +1,14 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + firefox + keepassxc + remmina + prismlauncher + kdePackages.kcalc + obs-studio + nicotine-plus + qbittorrent + vscode-fhs + ]; +}