Managed wallpapers
This commit is contained in:
parent
2bec61cc0c
commit
d7ce3ec0a7
|
@ -10,6 +10,7 @@ with builtins;
|
||||||
"desktop"
|
"desktop"
|
||||||
"ewwbar"
|
"ewwbar"
|
||||||
"firefox"
|
"firefox"
|
||||||
|
"firefox-no-tabs"
|
||||||
"fish"
|
"fish"
|
||||||
"git"
|
"git"
|
||||||
"gnome"
|
"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 = ''
|
userChrome = ''
|
||||||
#TabsToolbar {
|
|
||||||
visibility: collapse;
|
|
||||||
}
|
|
||||||
|
|
||||||
#webrtcIndicator {
|
#webrtcIndicator {
|
||||||
display: none;
|
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 = ''
|
# userContent = ''
|
||||||
|
|
|
@ -37,6 +37,7 @@ in {
|
||||||
imports = with outputs.homeManagerModules; [
|
imports = with outputs.homeManagerModules; [
|
||||||
sway
|
sway
|
||||||
pass
|
pass
|
||||||
|
firefox-no-tabs
|
||||||
# sway-laptop
|
# sway-laptop
|
||||||
# hyprland
|
# hyprland
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
inputs,
|
inputs,
|
||||||
outputs,
|
outputs,
|
||||||
|
@ -29,9 +30,9 @@
|
||||||
imports = with outputs.homeManagerModules; [linux-desktop];
|
imports = with outputs.homeManagerModules; [linux-desktop];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages =
|
environment.systemPackages = with pkgs;
|
||||||
#with pkgs;
|
#with pkgs;
|
||||||
[];
|
[variety];
|
||||||
|
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
programs.steam.remotePlay.openFirewall = true;
|
programs.steam.remotePlay.openFirewall = true;
|
||||||
|
|
Loading…
Reference in a new issue