first attempt at a legion setup

This commit is contained in:
Nickolaj Jepsen 2024-04-09 20:45:15 +00:00
parent b5febd4395
commit c69ed34507
11 changed files with 527 additions and 44 deletions

View file

@ -0,0 +1,31 @@
{
pkgs,
...
}: {
home.packages = with pkgs; [
nodejs_20
kitty
alacritty
wofi
vscode
xfce.thunar
xterm
foot
firefox
];
programs.kitty = {
enable = true;
};
wayland.windowManager.hyprland = {
enable = true;
package = pkgs.hyprland;
systemd.enable = true;
settings = {
"$mod" = "SUPER";
bind = [
"$mod, RETURN, exec, kitty"
"$mod, SPACE, exec, wofi --show drun"
];
};
};
}