mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-29 10:03:09 +01:00
24 lines
1.0 KiB
Nix
24 lines
1.0 KiB
Nix
{ pkgs, config, browser, wallpaperDir, flakeDir,
|
|
username, wallpaperGit, ... }:
|
|
|
|
{
|
|
# 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 kdenlive godot_4 rustup audacity
|
|
font-awesome spotify swayidle vim neovide neovim pavucontrol
|
|
element-desktop swaylock
|
|
(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; })
|
|
];
|
|
}
|