Hyprland try
This commit is contained in:
parent
daf33ba294
commit
bac86a3d54
3 changed files with 25 additions and 1 deletions
|
@ -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
21
hosts/lars/hyprland.nix
Normal 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"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -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
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue