Managed wallpapers
This commit is contained in:
parent
2bec61cc0c
commit
d7ce3ec0a7
5 changed files with 28 additions and 16 deletions
|
@ -10,6 +10,7 @@ with builtins;
|
|||
"desktop"
|
||||
"ewwbar"
|
||||
"firefox"
|
||||
"firefox-no-tabs"
|
||||
"fish"
|
||||
"git"
|
||||
"gnome"
|
||||
|
|
22
modules/home-manager/firefox-no-tabs.nix
Normal file
22
modules/home-manager/firefox-no-tabs.nix
Normal 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;
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -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 = ''
|
||||
|
|
|
@ -37,6 +37,7 @@ in {
|
|||
imports = with outputs.homeManagerModules; [
|
||||
sway
|
||||
pass
|
||||
firefox-no-tabs
|
||||
# sway-laptop
|
||||
# hyprland
|
||||
];
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
inputs,
|
||||
outputs,
|
||||
|
@ -29,9 +30,9 @@
|
|||
imports = with outputs.homeManagerModules; [linux-desktop];
|
||||
};
|
||||
|
||||
environment.systemPackages =
|
||||
#with pkgs;
|
||||
[];
|
||||
environment.systemPackages = with pkgs;
|
||||
#with pkgs;
|
||||
[variety];
|
||||
|
||||
programs.steam.enable = true;
|
||||
programs.steam.remotePlay.openFirewall = true;
|
||||
|
|
Loading…
Reference in a new issue