mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
31 lines
437 B
Nix
31 lines
437 B
Nix
{
|
|
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"
|
|
];
|
|
};
|
|
};
|
|
}
|