theming improvements

This commit is contained in:
Rouven Seifert 2023-01-22 23:00:16 +01:00
parent 3aeccfaa52
commit fd46423f0f
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 18 additions and 7 deletions

View file

@ -47,11 +47,11 @@
"xdph": "xdph"
},
"locked": {
"lastModified": 1674296335,
"narHash": "sha256-jUvjOqKGuEk1XfZNPXU3hcPtIJKkSNzwUm5yN1EFYZA=",
"lastModified": 1674403405,
"narHash": "sha256-FPOER3tINOEI+oWQGeiWLkpCudVJC3V8wk5cvP9857s=",
"owner": "hyprwm",
"repo": "Hyprland",
"rev": "fcbfd193930dd146b141531a9cf5301d55f26907",
"rev": "cb98242ea7faff04dad3ae166aff7126184f17c5",
"type": "github"
},
"original": {

View file

@ -12,6 +12,7 @@
./ssh
./tmux
./vifm
./theme
./zsh
./packages.nix
];

View file

@ -5,11 +5,11 @@
wpa_supplicant_gui
pcmanfm
xsel
vlc
# graphics
okular
evince
gimp
mpv
# sound
pavucontrol
@ -20,7 +20,7 @@
# internet
google-chrome
nextcloud-client
qbittorrent
transmission-gtk
# messaging
discord
@ -31,7 +31,6 @@
# games
prismlauncher # minecraft, but it actually works
superTuxKart
extremetuxracer
# yubikey and password stuff
yubikey-manager

View file

@ -0,0 +1,11 @@
{ config, pkgs, lib, ... }:
{
# theme hardcoded to dracula, too lazy to make all this base16
gtk = {
enable = true;
theme = {
name = "Dracula";
package = pkgs.dracula-theme;
};
};
}