niri config sorta working

This commit is contained in:
twoneis 2024-03-13 20:12:18 +01:00
parent 61ab22169b
commit 4b84b88dc4
5 changed files with 18 additions and 3 deletions

View file

@ -15,6 +15,8 @@
./virt.nix
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
networking.extraHosts =
''
10.10.11.245 surveillance.htb

View file

@ -11,6 +11,7 @@
./gdb
./git
./media
./niri-setup
./notes
./shell
./terminal

View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
programs.fuzzel= {
enable = true;
};
}

View file

@ -7,6 +7,9 @@
gtk = {
enable = true;
gtk3.extraConfig = {
gtk-application-prefer-dark-theme = true;
};
theme.name = "Adwaita Dark";
};
}

View file

@ -2,8 +2,10 @@
// "/-" comments out the following node.
input {
// If this line is omitted, holding down a key won't work anymore
keyboard { xkb { } }
// If this section is omitted, holding down a key won't work anymore
keyboard {
xkb { }
}
touchpad {
tap
natural-scroll
@ -19,7 +21,7 @@ input {
// `niri msg outputs` to list available outputs with options
output "eDP-1" {
scale 2.0
scale 1.0
mode "1920x1080@60"
@ -68,6 +70,8 @@ binds {
Mod+T { spawn "alacritty"; }
Mod+B { spawn "firefox"; }
Mod+S { spawn "fuzzel"; }
XF86AudioRaiseVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1+"; }
XF86AudioLowerVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "0.1-"; }