more config stuff
This commit is contained in:
parent
4b84b88dc4
commit
5cdeaf971b
5 changed files with 16 additions and 3 deletions
|
@ -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 =
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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+"; }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue