Hyprland try

This commit is contained in:
get 2024-04-12 14:33:26 +02:00
commit bac86a3d54
3 changed files with 25 additions and 1 deletions

View file

@ -2,6 +2,7 @@ _: {
imports = [ imports = [
../. ../.
./../programs.nix ./../programs.nix
./../hyprland.nix
./programs.nix ./programs.nix
./configuration.nix ./configuration.nix
./hardware-configuration.nix ./hardware-configuration.nix

21
hosts/lars/hyprland.nix Normal file
View file

@ -0,0 +1,21 @@
{ config, inputs, pkgs, ... }:
let
username = config.myOptions.other.system.username;
in {
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
wayland.windowManager.hyprland = {
enable = true;
settings = {
"$mod" = "SUPER";
bind = [
"$mod, Q, killactive"
"$mod, return, kitty"
"$mod SHIFT, return, firefox"
];
};
};
}

View file

@ -15,7 +15,7 @@ in {
libreoffice-fresh libreoffice-fresh
ventoy-full ventoy-full
lazygit lazygit
# obsidian obsidian
neofetch neofetch
zip zip
vlc vlc
@ -46,6 +46,8 @@ in {
rustdesk rustdesk
neovim neovim
tmux tmux
firefox
kitty
]; ];
}; };
} }