mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 01:21:39 +01:00
theming improvements
This commit is contained in:
parent
3aeccfaa52
commit
fd46423f0f
4 changed files with 18 additions and 7 deletions
|
@ -47,11 +47,11 @@
|
||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1674296335,
|
"lastModified": 1674403405,
|
||||||
"narHash": "sha256-jUvjOqKGuEk1XfZNPXU3hcPtIJKkSNzwUm5yN1EFYZA=",
|
"narHash": "sha256-FPOER3tINOEI+oWQGeiWLkpCudVJC3V8wk5cvP9857s=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "Hyprland",
|
"repo": "Hyprland",
|
||||||
"rev": "fcbfd193930dd146b141531a9cf5301d55f26907",
|
"rev": "cb98242ea7faff04dad3ae166aff7126184f17c5",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
./ssh
|
./ssh
|
||||||
./tmux
|
./tmux
|
||||||
./vifm
|
./vifm
|
||||||
|
./theme
|
||||||
./zsh
|
./zsh
|
||||||
./packages.nix
|
./packages.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
wpa_supplicant_gui
|
wpa_supplicant_gui
|
||||||
pcmanfm
|
pcmanfm
|
||||||
xsel
|
xsel
|
||||||
vlc
|
|
||||||
|
|
||||||
# graphics
|
# graphics
|
||||||
okular
|
evince
|
||||||
gimp
|
gimp
|
||||||
|
mpv
|
||||||
|
|
||||||
# sound
|
# sound
|
||||||
pavucontrol
|
pavucontrol
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
# internet
|
# internet
|
||||||
google-chrome
|
google-chrome
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
qbittorrent
|
transmission-gtk
|
||||||
|
|
||||||
# messaging
|
# messaging
|
||||||
discord
|
discord
|
||||||
|
@ -31,7 +31,6 @@
|
||||||
# games
|
# games
|
||||||
prismlauncher # minecraft, but it actually works
|
prismlauncher # minecraft, but it actually works
|
||||||
superTuxKart
|
superTuxKart
|
||||||
extremetuxracer
|
|
||||||
|
|
||||||
# yubikey and password stuff
|
# yubikey and password stuff
|
||||||
yubikey-manager
|
yubikey-manager
|
||||||
|
|
11
users/rouven/modules/theme/default.nix
Normal file
11
users/rouven/modules/theme/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue