rework home-manager file structure; add simple hyprland conf
This commit is contained in:
parent
c40c333078
commit
b688a738d0
15 changed files with 144 additions and 100 deletions
27
home/desktop/hyprland/default.nix
Normal file
27
home/desktop/hyprland/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, config, inputs, pkgs, ... }:
|
||||
{
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
systemd = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
settings = {
|
||||
general = {
|
||||
gaps_in = 15;
|
||||
gaps_out = 20;
|
||||
border_size = 2.7;
|
||||
cursor_inactive_timeout = 4;
|
||||
};
|
||||
animations = {
|
||||
enabled = true;
|
||||
};
|
||||
|
||||
bind = let
|
||||
terminal = "${pkgs.kitty}/bin/kitty";
|
||||
in [
|
||||
"SUPER,Return,exec,${terminal}"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue