From d868c9496b9bcdb2e300872be83b001d8eb7e580 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Wed, 24 Apr 2024 02:38:20 +0200 Subject: [PATCH] added wg-tools, tried to fix themes --- hosts/vali/mars/configuration.nix | 15 ++---- hosts/vali/mars/programs.nix | 5 +- hosts/vali/mars/temp | 78 ------------------------------- 3 files changed, 8 insertions(+), 90 deletions(-) delete mode 100644 hosts/vali/mars/temp diff --git a/hosts/vali/mars/configuration.nix b/hosts/vali/mars/configuration.nix index 163e6e9..cfb6765 100644 --- a/hosts/vali/mars/configuration.nix +++ b/hosts/vali/mars/configuration.nix @@ -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"; }; }; }; diff --git a/hosts/vali/mars/programs.nix b/hosts/vali/mars/programs.nix index a23fcb8..9c50ac6 100644 --- a/hosts/vali/mars/programs.nix +++ b/hosts/vali/mars/programs.nix @@ -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 diff --git a/hosts/vali/mars/temp b/hosts/vali/mars/temp deleted file mode 100644 index e2d9650..0000000 --- a/hosts/vali/mars/temp +++ /dev/null @@ -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 - ]; - }; -}