2024-02-06 04:46:24 +01:00
|
|
|
{ pkgs, config, username, ... }:
|
2024-01-18 08:36:06 +01:00
|
|
|
|
2024-02-06 04:46:24 +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; [
|
2024-01-29 16:15:50 +01:00
|
|
|
pkgs."${browser}" discord libvirt swww grim slurp gnome.file-roller
|
2024-01-19 05:22:47 +01:00
|
|
|
swaynotificationcenter rofi-wayland imv transmission-gtk mpv
|
2024-01-28 09:12:50 +01:00
|
|
|
gimp obs-studio blender-hip kdenlive 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
|
2024-01-18 08:45:23 +01:00
|
|
|
(import ./../scripts/emopicker9000.nix { inherit pkgs; })
|
|
|
|
(import ./../scripts/task-waybar.nix { inherit pkgs; })
|
|
|
|
(import ./../scripts/squirtle.nix { inherit pkgs; })
|
2024-01-20 04:40:26 +01:00
|
|
|
(import ./../scripts/wallsetter.nix { inherit pkgs; inherit wallpaperDir;
|
|
|
|
inherit username; inherit wallpaperGit; })
|
2024-01-18 08:45:23 +01:00
|
|
|
(import ./../scripts/themechange.nix { inherit pkgs; inherit flakeDir; })
|
|
|
|
(import ./../scripts/theme-selector.nix { inherit pkgs; })
|
2024-01-27 08:03:09 +01:00
|
|
|
(import ./../scripts/nvidia-offload.nix { inherit pkgs; })
|
2024-01-18 08:36:06 +01:00
|
|
|
];
|
|
|
|
}
|