niri config sorta working
This commit is contained in:
parent
61ab22169b
commit
4b84b88dc4
5 changed files with 18 additions and 3 deletions
|
@ -15,6 +15,8 @@
|
|||
./virt.nix
|
||||
];
|
||||
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
||||
networking.extraHosts =
|
||||
''
|
||||
10.10.11.245 surveillance.htb
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
./gdb
|
||||
./git
|
||||
./media
|
||||
./niri-setup
|
||||
./notes
|
||||
./shell
|
||||
./terminal
|
||||
|
|
5
modules/system/home/niri-setup/default.nix
Normal file
5
modules/system/home/niri-setup/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }: {
|
||||
programs.fuzzel= {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -7,6 +7,9 @@
|
|||
|
||||
gtk = {
|
||||
enable = true;
|
||||
gtk3.extraConfig = {
|
||||
gtk-application-prefer-dark-theme = true;
|
||||
};
|
||||
theme.name = "Adwaita Dark";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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-"; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue