zaneyos/config/home/packages.nix

26 lines
1.0 KiB
Nix
Raw Normal View History

{ pkgs, config, username, ... }:
2024-01-18 08:36:06 +01:00
let
inherit (import ../../options.nix)
browser wallpaperDir wallpaperGit flakeDir;
in {
2024-01-18 08:36:06 +01:00
# Install Packages For The User
home.packages = with pkgs; [
pkgs."${browser}" discord libvirt swww grim slurp gnome.file-roller
swaynotificationcenter rofi-wayland imv transmission-gtk mpv
gimp obs-studio blender-hip godot_4 rustup audacity
2024-02-05 21:18:53 +01:00
font-awesome spotify swayidle neovide pavucontrol
2024-01-29 23:18:14 +01:00
element-desktop swaylock
2024-01-18 08:36:06 +01:00
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
# Import Scripts
(import ./../scripts/emopicker9000.nix { inherit pkgs; })
(import ./../scripts/task-waybar.nix { inherit pkgs; })
(import ./../scripts/squirtle.nix { inherit pkgs; })
(import ./../scripts/wallsetter.nix { inherit pkgs; inherit wallpaperDir;
inherit username; inherit wallpaperGit; })
(import ./../scripts/themechange.nix { inherit pkgs; inherit flakeDir; })
(import ./../scripts/theme-selector.nix { inherit pkgs; })
(import ./../scripts/nvidia-offload.nix { inherit pkgs; })
2024-01-18 08:36:06 +01:00
];
}