Updates and configs

This commit is contained in:
iFargle 2023-08-17 15:00:55 +09:00
parent 19a175f365
commit 333a06b0e8
3 changed files with 34 additions and 1 deletions

View file

@ -35,7 +35,7 @@
users.users.albert = { users.users.albert = {
isNormalUser = true; isNormalUser = true;
description = "Albert J. Copeland"; description = "Albert J. Copeland";
extraGroups = [ "networkmanager" "wheel" "video" ]; extraGroups = [ "networkmanager" "wheel" "video" "dbus" ];
# video is required for the "light" command to work # video is required for the "light" command to work
hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6"; hashedPassword = "$y$j9T$wKLsIWaA4Gf63RvjedwLJ0$EHKL6BBJV0CAxEKcHHjaBqW085KJ/MGvmbyWzmcWOy6";
}; };

View file

@ -3,6 +3,7 @@
./hyprland-conf.nix ./hyprland-conf.nix
./waybar-conf.nix ./waybar-conf.nix
./rofi-conf.nix ./rofi-conf.nix
./mako-conf.nix
# ./gnome-dconf.nix # ./gnome-dconf.nix
]; ];
} }

View file

@ -0,0 +1,32 @@
{ ... }: {
home.file.".config/mako/config".text = ''
# Global configuration options
max-history=5
sort=+time
# Binding options
on-button-left=dismiss
on-button-right=dismiss-all
# Style options
font=Cantarell 10
background-color=#252423
text-color=#e2cca9
width=300
height=100
margin=10
padding=15
border-size=0
border-radius=5
icons=1
max-icon-size=128
icon-location=left
markup=1
actions=1
history=1
text-alignment=left
default-timeout=15000
layer=top
anchor=bottom-right
'';
}