Updates and configs
This commit is contained in:
parent
19a175f365
commit
333a06b0e8
3 changed files with 34 additions and 1 deletions
|
@ -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";
|
||||||
};
|
};
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
32
hosts/nixos-laptop/home-manager/mako-conf.nix
Normal file
32
hosts/nixos-laptop/home-manager/mako-conf.nix
Normal 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
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Reference in a new issue