mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-28 11:43:51 -08:00
refactor: move packages into modules
This commit is contained in:
parent
23f6326c2b
commit
49c72907d9
2 changed files with 18 additions and 16 deletions
|
@ -4,6 +4,24 @@
|
||||||
system,
|
system,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
wl-clipboard
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
swappy
|
||||||
|
pavucontrol
|
||||||
|
waypaper
|
||||||
|
swaybg
|
||||||
|
pamixer
|
||||||
|
brightnessctl
|
||||||
|
|
||||||
|
bibata-cursors
|
||||||
|
libsForQt5.qtstyleplugin-kvantum
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
papirus-icon-theme
|
||||||
|
libsForQt5.qt5ct
|
||||||
|
];
|
||||||
|
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
|
package = inputs.stablepkgs.legacyPackages.${system}.hyprland;
|
||||||
|
|
|
@ -22,15 +22,6 @@ with pkgs; [
|
||||||
usbutils # lsusb
|
usbutils # lsusb
|
||||||
|
|
||||||
# desktop utils
|
# desktop utils
|
||||||
wl-clipboard
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
swappy
|
|
||||||
pavucontrol
|
|
||||||
waypaper
|
|
||||||
swaybg
|
|
||||||
pamixer
|
|
||||||
brightnessctl
|
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
|
|
||||||
# desktop apps
|
# desktop apps
|
||||||
|
@ -40,11 +31,4 @@ with pkgs; [
|
||||||
signal-desktop
|
signal-desktop
|
||||||
|
|
||||||
gcc
|
gcc
|
||||||
|
|
||||||
# desktop ricing
|
|
||||||
bibata-cursors
|
|
||||||
libsForQt5.qtstyleplugin-kvantum
|
|
||||||
libsForQt5.qt5ct
|
|
||||||
papirus-icon-theme
|
|
||||||
libsForQt5.qt5ct
|
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue