move some stuff around
i was trying to fix audio but it was a physical issue. good, i guess?
This commit is contained in:
parent
1b4427a70c
commit
e2c27dd34e
2 changed files with 22 additions and 15 deletions
|
@ -78,29 +78,29 @@ in
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
layout = "us";
|
xkb.layout = "us";
|
||||||
xkbVariant = "";
|
xkb.variant = "";
|
||||||
|
|
||||||
videoDrivers = ["nvidia"];
|
videoDrivers = ["nvidia"];
|
||||||
|
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
plasma6.enable = conf.wm == "plasma";
|
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
xfce = if conf.wm == "i3" then {
|
|
||||||
enable = true;
|
|
||||||
noDesktop = true;
|
|
||||||
enableXfwm = false;
|
|
||||||
} else {};
|
|
||||||
};
|
|
||||||
displayManager = {
|
|
||||||
sddm.enable = conf.wm == "plasma" || conf.wm == "xmonad";
|
|
||||||
defaultSession = if conf.wm == "i3" then "xfce+i3" else null;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
windowManager = {
|
windowManager = {
|
||||||
i3.enable = conf.wm == "i3";
|
i3.enable = conf.wm == "i3";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.desktopManager = {
|
||||||
|
plasma6.enable = conf.wm == "plasma";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.displayManager = {
|
||||||
|
sddm.enable = conf.wm == "plasma" || conf.wm == "xmonad";
|
||||||
|
defaultSession = if conf.wm == "i3" then "xfce+i3" else null;
|
||||||
|
};
|
||||||
|
|
||||||
# services.xwayland = {
|
# services.xwayland = {
|
||||||
# enable = conf.is-wayland;
|
# enable = conf.is-wayland;
|
||||||
# };
|
# };
|
||||||
|
@ -137,6 +137,14 @@ in
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
# If you want to use JACK applications, uncomment this
|
# If you want to use JACK applications, uncomment this
|
||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
|
extraConfig.pipewire."92-low-latency" = {
|
||||||
|
context.properties = {
|
||||||
|
default.clock.rate = 48000;
|
||||||
|
default.clock.quantum = 32;
|
||||||
|
default.clock.min-quantum = 32;
|
||||||
|
default.clock.max-quantum = 32;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# use the example session manager (no others are packaged yet so this is enabled by default,
|
# use the example session manager (no others are packaged yet so this is enabled by default,
|
||||||
# no need to redefine it in your config for now)
|
# no need to redefine it in your config for now)
|
||||||
|
|
5
home.nix
5
home.nix
|
@ -18,8 +18,6 @@ in
|
||||||
fortune
|
fortune
|
||||||
cowsay
|
cowsay
|
||||||
ponysay
|
ponysay
|
||||||
lispPackages.trivia
|
|
||||||
lispPackages.quicklisp
|
|
||||||
# lutris
|
# lutris
|
||||||
# mono5
|
# mono5
|
||||||
nethack
|
nethack
|
||||||
|
@ -62,6 +60,7 @@ in
|
||||||
clojure
|
clojure
|
||||||
ruby_3_3
|
ruby_3_3
|
||||||
julia
|
julia
|
||||||
|
lua
|
||||||
gcc
|
gcc
|
||||||
|
|
||||||
cargo
|
cargo
|
||||||
|
@ -178,7 +177,7 @@ in
|
||||||
|
|
||||||
vim-bufkill
|
vim-bufkill
|
||||||
|
|
||||||
suda-vim
|
vim-suda
|
||||||
|
|
||||||
# navigation
|
# navigation
|
||||||
nerdtree
|
nerdtree
|
||||||
|
|
Loading…
Reference in a new issue