added wg-tools, tried to fix themes

This commit is contained in:
Charlie Root 2024-04-24 02:38:20 +02:00
commit d868c9496b
3 changed files with 8 additions and 90 deletions

View file

@ -34,12 +34,7 @@
}
'';
};
/* options.ui.darkTheme = {
type = lib.types.bool;
default = true;
example = false;
description = "If ui programs should use a dark or light theme";
};*/
modules = {
other = {
system = {
@ -82,18 +77,18 @@
size = 24;
};
gtk = {
enable = true;
enable = false;
package = pkgs.gruvbox-gtk-theme;
name = "Gruvbox-Dark-BL";
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders;
# name = "Papirus-Dark";
# package = pkgs.catppuccin-papirus-folders;
};
};
qt = {
enable = true;
package = pkgs.kde-gruvbox;
name = "konsole";
name = "Gruvbox";
};
};
};

View file

@ -7,7 +7,6 @@ in {
alacritty
alsa-utils
asciinema
# betterbird
bibata-cursors
blanket
dig
@ -47,6 +46,7 @@ in {
neovim
networkmanagerapplet
nextcloud-client
nicotine-plus
pamixer
pavucontrol
pcmanfm
@ -55,6 +55,7 @@ in {
playerctl
polkit
python3
python311Packages.pygame
qbittorrent
ripgrep
rustdesk
@ -74,10 +75,10 @@ in {
unzip
util-linux
ventoy-full
vesktop
vlc
weechat
wget
wireguard-tools
xclip
xfce.thunar
xorg.libX11.dev

View file

@ -1,78 +0,0 @@
{ config, inputs, pkgs, ... }:
let
username = config.myOptions.other.system.username;
in {
home-manager.users.${username} = {
home.packages = let
fenix = inputs.fenix.packages.${pkgs.system};
in with pkgs; [
alacritty
alsa-utils
asciinema
betterbird
bibata-cursors
dig
easyeffects
element-desktop
eza
fastfetch
(fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
ffmpeg_6-full
flameshot
foot
gcc
gdb
grimblast
git
httpie
imagemagick
keepassxc
krita
lazygit
libreoffice-fresh
neofetch
neovim
networkmanagerapplet
nextcloud-client
pamixer
pavucontrol
pcmanfm
pfetch
playerctl
polkit
python3
qbittorrent
ripgrep
rustdesk
rofi
scc
sherlock
signal-desktop-beta
smartmontools
st
steam
strawberry.strawberry-wrapped
telegram-desktop
texliveFull
thunderbird
tor-browser-bundle-bin
trash-cli
tree
unzip
ventoy-full
vesktop
vlc
xclip
yt-dlp
zathura
zip
];
};
}