more config stuff

This commit is contained in:
twoneis 2024-03-13 20:34:10 +01:00
parent 4b84b88dc4
commit 5cdeaf971b
5 changed files with 16 additions and 3 deletions

View file

@ -15,6 +15,8 @@
./virt.nix ./virt.nix
]; ];
services.xserver.displayManager.gdm.enable = true;
environment.sessionVariables.NIXOS_OZONE_WL = "1"; environment.sessionVariables.NIXOS_OZONE_WL = "1";
networking.extraHosts = networking.extraHosts =

View file

@ -1,6 +1,5 @@
{ pkgs, lib, config, ... }: lib.mkIf (config.withGnome) { { pkgs, lib, config, ... }: lib.mkIf (config.withGnome) {
# Enable the GNOME Desktop Environment. # Enable the GNOME Desktop Environment.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true; services.xserver.desktopManager.gnome.enable = true;
# Don't pull unnecessary packages # Don't pull unnecessary packages
services.gnome.core-utilities.enable = false; services.gnome.core-utilities.enable = false;

View file

@ -1,5 +1,16 @@
{ pkgs, ... }: { { pkgs, ... }: {
programs.fuzzel= { programs.fuzzel= {
enable = true; enable = true;
settings = {
colors = {
background = "191724ee";
text = "e0def4ff";
match = "eb6f92ff";
selection = "524f67ee";
selection-text = "e0def4ff";
selection-match = "eb6f92ff";
border = "26233aff";
};
};
}; };
} }

View file

@ -1,7 +1,8 @@
{ ... }: { { pkgs, ... }: {
qt = { qt = {
enable = true; enable = true;
platformTheme = "gtk3"; platformTheme = "gtk3";
style.package = pkgs.adwaita-qt;
style.name = "adwaita-dark"; style.name = "adwaita-dark";
}; };

View file

@ -70,7 +70,7 @@ binds {
Mod+T { spawn "alacritty"; } Mod+T { spawn "alacritty"; }
Mod+B { spawn "firefox"; } Mod+B { spawn "firefox"; }
Mod+S { spawn "fuzzel"; } Mod+S { spawn "fuzzel" "-I"; }
XF86AudioRaiseVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"; } XF86AudioRaiseVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"; }