mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
first attempt at a legion setup
This commit is contained in:
parent
b5febd4395
commit
c69ed34507
11 changed files with 527 additions and 44 deletions
31
machines/virtualbox/home-manager.nix
Normal file
31
machines/virtualbox/home-manager.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue