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 = { modules = {
other = { other = {
system = { system = {
@ -82,18 +77,18 @@
size = 24; size = 24;
}; };
gtk = { gtk = {
enable = true; enable = false;
package = pkgs.gruvbox-gtk-theme; package = pkgs.gruvbox-gtk-theme;
name = "Gruvbox-Dark-BL"; name = "Gruvbox-Dark-BL";
iconTheme = { iconTheme = {
name = "Papirus-Dark"; # name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders; # package = pkgs.catppuccin-papirus-folders;
}; };
}; };
qt = { qt = {
enable = true; enable = true;
package = pkgs.kde-gruvbox; package = pkgs.kde-gruvbox;
name = "konsole"; name = "Gruvbox";
}; };
}; };
}; };

View file

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