add librewolf

This commit is contained in:
crurak 2023-08-05 14:32:04 +02:00
parent 4a62dec178
commit 1d539039ae
3 changed files with 41 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ libnotify ]; home.packages = with pkgs; [ libnotify ];
service.dunst = { services.dunst = {
enable = true; enable = true;
iconTheme = { iconTheme = {
package = pkgs.papirus-icon-theme; package = pkgs.papirus-icon-theme;

View File

@ -2,6 +2,37 @@
modifier = "SUPER"; modifier = "SUPER";
in { in {
xdg.configFile."hypr/hyprland.conf".text = '' 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}; $SUPER = ${modifier};
bind = $SUPER, Q, exec, kitty bind = $SUPER, Q, exec, kitty
''; '';

9
home/librewolf.nix Normal file
View File

@ -0,0 +1,9 @@
{
programs.librewolf = {
enable = true;
settings = {
"ui.use_activity_cursor" = true;
}
};
}