Cleanup
This commit is contained in:
parent
ac964dcee9
commit
f5936857e2
12
daniel.nix
12
daniel.nix
|
@ -271,17 +271,21 @@
|
||||||
'';
|
'';
|
||||||
|
|
||||||
userChrome = ''
|
userChrome = ''
|
||||||
|
#TabsToolbar {
|
||||||
|
visibility: collapse;
|
||||||
|
}
|
||||||
|
|
||||||
#webrtcIndicator {
|
#webrtcIndicator {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
|
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
|
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
|
||||||
visibility: collapse !important;
|
visibility: collapse !important;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -64,41 +64,63 @@ in
|
||||||
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
gtk = {
|
||||||
brightnessctl
|
enable = true;
|
||||||
feh
|
theme = {
|
||||||
gimp
|
name = "Catppuccin-Mocha-Compact-Sapphire-dark";
|
||||||
grim
|
package = pkgs.catppuccin-gtk.override {
|
||||||
inkscape
|
accents = [ "sapphire" ];
|
||||||
krita
|
size = "compact";
|
||||||
libinput
|
tweaks = [ "rimless" "black" ];
|
||||||
libinput-gestures
|
variant = "mocha";
|
||||||
libnotify
|
};
|
||||||
lutris
|
};
|
||||||
mako
|
};
|
||||||
nil
|
|
||||||
nixpkgs-fmt
|
environment = {
|
||||||
noto-fonts
|
variables = {
|
||||||
pamixer
|
GTK_THEME = "hx";
|
||||||
pavucontrol
|
VISUAL = "hx";
|
||||||
pgcli
|
PAGER = "less";
|
||||||
playerctl
|
MANPAGER = "less";
|
||||||
pulseaudio
|
};
|
||||||
pulsemixer
|
|
||||||
rclone
|
systemPackages = with pkgs; [
|
||||||
restic
|
brightnessctl
|
||||||
slurp
|
feh
|
||||||
steam
|
gimp
|
||||||
swaybg
|
grim
|
||||||
swayidle
|
inkscape
|
||||||
swaylock
|
krita
|
||||||
vlc
|
libinput
|
||||||
vulkan-tools
|
libinput-gestures
|
||||||
waybar
|
libnotify
|
||||||
weechat
|
lutris
|
||||||
wine
|
mako
|
||||||
wl-clipboard
|
nil
|
||||||
wofi
|
nixpkgs-fmt
|
||||||
zathura
|
noto-fonts
|
||||||
];
|
pamixer
|
||||||
|
pavucontrol
|
||||||
|
pgcli
|
||||||
|
playerctl
|
||||||
|
pulseaudio
|
||||||
|
pulsemixer
|
||||||
|
rclone
|
||||||
|
restic
|
||||||
|
slurp
|
||||||
|
steam
|
||||||
|
swaybg
|
||||||
|
swayidle
|
||||||
|
swaylock
|
||||||
|
vlc
|
||||||
|
vulkan-tools
|
||||||
|
waybar
|
||||||
|
weechat
|
||||||
|
wine
|
||||||
|
wl-clipboard
|
||||||
|
wofi
|
||||||
|
zathura
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue