chore(hyprland): move utility packages to a different file

This commit is contained in:
uku 2024-06-26 19:41:51 +02:00
parent 5719c0d2b4
commit b4c294eb58
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
3 changed files with 27 additions and 14 deletions

View file

@ -18,8 +18,6 @@
# the world if hyprland
# ../programs/hyprland.nix
# ../programs/fuzzel.nix
# ../programs/waybar
];
boot = {
@ -73,17 +71,13 @@
home = {
packages = with pkgs; [
gimp
gnome.gnome-calculator
gparted
jetbrains.idea-ultimate
libreoffice-fresh
mate.eom
mpv
nwg-look
obs-studio
obsidian
osu-lazer-bin
pavucontrol
polkit_gnome
(prismlauncher.override {
jdks = [temurin-bin-21 temurin-bin-17 temurin-bin-8];
@ -125,16 +119,8 @@
firefox.enable = true;
seahorse.enable = true;
file-roller.enable = true;
steam.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [thunar-volman thunar-archive-plugin];
};
virt-manager.enable = true;
};

View file

@ -0,0 +1,20 @@
{pkgs, ...}: {
# utility packages for hyprland, since you know it's not a DE
hm.home.packages = with pkgs; [
gnome.gnome-calculator
mate.eom
nwg-look
pavucontrol
];
programs = {
seahorse.enable = true;
file-roller.enable = true;
thunar = {
enable = true;
plugins = with pkgs.xfce; [thunar-volman thunar-archive-plugin];
};
};
}

View file

@ -3,6 +3,13 @@
pkgs,
...
}: {
imports = [
./hyprland-misc.nix
./alacritty.nix
./fuzzel.nix
./waybar
];
programs.hyprland.enable = true;
services.displayManager.defaultSession = "hyprland";