Use phinger-cursors theme
This commit is contained in:
parent
e2231ee089
commit
b852c2b412
1 changed files with 29 additions and 23 deletions
52
fanya.nix
52
fanya.nix
|
@ -12,8 +12,6 @@ in {
|
|||
./system.nix
|
||||
];
|
||||
|
||||
# TODO: setup phinger-cursors
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
neovim
|
||||
|
@ -26,28 +24,36 @@ in {
|
|||
];
|
||||
|
||||
home-manager.users.buffet = {
|
||||
home.packages = with pkgs; [
|
||||
du-dust
|
||||
fd
|
||||
gdb
|
||||
github-cli
|
||||
htop
|
||||
kcachegrind
|
||||
linuxPackages.perf
|
||||
okular
|
||||
radare2
|
||||
ripgrep
|
||||
scc
|
||||
strace
|
||||
trash-cli
|
||||
tree
|
||||
valgrind
|
||||
wget
|
||||
wl-clipboard
|
||||
];
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
du-dust
|
||||
fd
|
||||
gdb
|
||||
github-cli
|
||||
htop
|
||||
kcachegrind
|
||||
linuxPackages.perf
|
||||
okular
|
||||
radare2
|
||||
ripgrep
|
||||
scc
|
||||
strace
|
||||
trash-cli
|
||||
tree
|
||||
valgrind
|
||||
wget
|
||||
wl-clipboard
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
BROWSER = "chromium";
|
||||
sessionVariables = {
|
||||
BROWSER = "chromium";
|
||||
};
|
||||
|
||||
pointerCursor = {
|
||||
package = pkgs.phinger-cursors;
|
||||
name = "phinger-cursors-light";
|
||||
gtk.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
programs.direnv = {
|
||||
|
|
Loading…
Reference in a new issue