diff --git a/home/dunst.nix b/home/dunst.nix index e65f2f6..363da93 100644 --- a/home/dunst.nix +++ b/home/dunst.nix @@ -1,6 +1,6 @@ { pkgs, ... }: { home.packages = with pkgs; [ libnotify ]; - service.dunst = { + services.dunst = { enable = true; iconTheme = { package = pkgs.papirus-icon-theme; diff --git a/home/hyprland.nix b/home/hyprland.nix index df31665..8bc7900 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -2,6 +2,37 @@ modifier = "SUPER"; in { xdg.configFile."hypr/hyprland.conf".text = '' + + general { + gaps_in = 0 + gaps_out = -1 + boarder_size = 0 + layout = master + } + + input { + kb_layout = de + accel_profile = flat + follow_mouse = 1 + mouse_refocus = 0 + sensitivity = 0 + touchpad { + natural_scroll = yes + disable_while_typing = no + } + repeat_rate = 50 + repeat_delay = 300 + } + + master { + new_is_master = no + new_on_top = no + mfact = 0.65 + special_scale_factor = 1 + } + + + $SUPER = ${modifier}; bind = $SUPER, Q, exec, kitty ''; diff --git a/home/librewolf.nix b/home/librewolf.nix new file mode 100644 index 0000000..866c4ae --- /dev/null +++ b/home/librewolf.nix @@ -0,0 +1,9 @@ +{ + programs.librewolf = { + enable = true; + + settings = { + "ui.use_activity_cursor" = true; + } + }; +}