more fragmentation of HM config

This commit is contained in:
2025-06-09 10:00:40 +03:00
parent 0fba45e67f
commit 790d749ff8
3 changed files with 17 additions and 11 deletions
+3 -1
View File
@@ -49,6 +49,7 @@
./hosts/generic/unfree_allow.nix ./hosts/generic/unfree_allow.nix
./hosts/Aphelion/hardware-Aphelion.nix ./hosts/Aphelion/hardware-Aphelion.nix
./hosts/Aphelion/nvidia.nix ./hosts/Aphelion/nvidia.nix
./hosts/Aphelion/sunshine.nix
./desktop/gnome.nix ./desktop/gnome.nix
./misc/disable_suspend.nix ./misc/disable_suspend.nix
./home/yaroslav/steam.nix ./home/yaroslav/steam.nix
@@ -57,7 +58,8 @@
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.yaroslav = { home-manager.users.yaroslav = {
imports = [ imports = [
./home/yaroslav/Aphelion/Aphelion.nix ./home/yaroslav/Aphelion/Aphelion.nix
./home/yaroslav/home_gui.nix
]; ];
}; };
} }
-10
View File
@@ -52,29 +52,19 @@ in
"steam" "steam"
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
firefox
mc mc
htop htop
yt-dlp yt-dlp
zsh-powerlevel10k zsh-powerlevel10k
meslo-lgs-nf meslo-lgs-nf
keepassxc
remmina
nekoray nekoray
python3 python3
prismlauncher
kdePackages.kcalc
ayugram-desktop
distrobox distrobox
thunderbird
scrcpy scrcpy
android-tools android-tools
linux-wifi-hotspot linux-wifi-hotspot
nmap nmap
nil nil
obs-studio
nicotine-plus
qbittorrent
]; ];
xdg.enable = true; xdg.enable = true;
+14
View File
@@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
firefox
keepassxc
remmina
prismlauncher
kdePackages.kcalc
obs-studio
nicotine-plus
qbittorrent
vscode-fhs
];
}