chore: random fixups

This commit is contained in:
Zhongheng Liu 2024-11-10 16:34:31 +02:00
commit 9475ec1a21
Signed by: steven
GPG key ID: DC8F48E7B4C40905
4 changed files with 15 additions and 1 deletions

View file

@ -19,7 +19,7 @@ in
# keysyms for util functions # keysyms for util functions
# Example volume button that allows press and hold, volume limited to 150% # Example volume button that allows press and hold, volume limited to 150%
"$mod, Q, killactive" "$mod, Q, killactive"
"$mod, D, exec, ${pkgs.rofi}/bin/rofi -show drun" "$mod, D, exec, ${pkgs.fuzzel}/bin/fuzzel"
"$mod, F, fullscreen" "$mod, F, fullscreen"
"$mod, E, exec, ${pkgs.pcmanfm}/bin/pcmanfm" "$mod, E, exec, ${pkgs.pcmanfm}/bin/pcmanfm"
# foot terminal # foot terminal

View file

@ -10,6 +10,8 @@
splash = false; splash = false;
preload = [config.myWallPaperPathString]; preload = [config.myWallPaperPathString];
wallpaper = [",${config.myWallPaperPathString}"]; wallpaper = [",${config.myWallPaperPathString}"];
#preload = [/home/stvnliu/Downloads/mao-zedong.jpg];
#wallpaper = [",/home/stvnliu/Downloads/mao-zedong.jpg"];
}; };
}; };
} }

View file

@ -9,5 +9,6 @@
./office-programs.nix ./office-programs.nix
./discord.nix ./discord.nix
./wayland-utils.nix ./wayland-utils.nix
./pentesting.nix
]; ];
} }

View file

@ -0,0 +1,11 @@
{
pkgs,
config,
...
}: {
home.packages = with pkgs; [
openvpn
inetutils
nmap
];
}