Managed wallpapers

This commit is contained in:
Daniel Flanagan 2024-01-24 22:02:50 -06:00
parent 2bec61cc0c
commit d7ce3ec0a7
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
5 changed files with 28 additions and 16 deletions

View file

@ -10,6 +10,7 @@ with builtins;
"desktop"
"ewwbar"
"firefox"
"firefox-no-tabs"
"fish"
"git"
"gnome"

View file

@ -0,0 +1,22 @@
{...}: {
programs.firefox = {
profiles = {
daniel = {
userChrome = ''
#TabsToolbar {
visibility: collapse;
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
'';
};
};
};
}

View file

@ -26,22 +26,9 @@
'';
userChrome = ''
#TabsToolbar {
visibility: collapse;
}
#webrtcIndicator {
display: none;
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
'';
# userContent = ''

View file

@ -37,6 +37,7 @@ in {
imports = with outputs.homeManagerModules; [
sway
pass
firefox-no-tabs
# sway-laptop
# hyprland
];

View file

@ -1,4 +1,5 @@
{
pkgs,
lib,
inputs,
outputs,
@ -29,9 +30,9 @@
imports = with outputs.homeManagerModules; [linux-desktop];
};
environment.systemPackages =
environment.systemPackages = with pkgs;
#with pkgs;
[];
[variety];
programs.steam.enable = true;
programs.steam.remotePlay.openFirewall = true;