rework home-manager file structure; add simple hyprland conf

This commit is contained in:
insects 2024-08-09 13:13:23 +02:00
parent c40c333078
commit b688a738d0
15 changed files with 144 additions and 100 deletions

View 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}"
];
};
};
}