Hyprland try
This commit is contained in:
parent
dfa6cc1782
commit
8e8d2f2a99
3 changed files with 25 additions and 1 deletions
|
@ -2,6 +2,7 @@ _: {
|
|||
imports = [
|
||||
../.
|
||||
./../programs.nix
|
||||
./../hyprland.nix
|
||||
./programs.nix
|
||||
./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
|
||||
ventoy-full
|
||||
lazygit
|
||||
# obsidian
|
||||
obsidian
|
||||
neofetch
|
||||
zip
|
||||
vlc
|
||||
|
@ -46,6 +46,8 @@ in {
|
|||
rustdesk
|
||||
neovim
|
||||
tmux
|
||||
firefox
|
||||
kitty
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue