adding patches for all config changes in unstable

This commit is contained in:
alisceon 2026-04-09 11:40:36 +02:00
parent abe8ff6eff
commit b35d6bbc34
6 changed files with 14 additions and 21 deletions

View file

@ -2,6 +2,7 @@
{
programs.git = {
enable = true;
signing.format = "openpgp";
settings = {
user = {
name = "alisceon";

View file

@ -9,7 +9,7 @@ in
enable = true;
systemd = {
enable = true;
target = "graphical-session.target";
targets = [ "graphical-session.target" ];
};
settings.mainBar = {
layer = "bottom";

View file

@ -25,23 +25,11 @@ in
command = "${pkgs.systemd}/bin/systemctl suspend";
}
];
events = [
{
event = "before-sleep";
command = "display off; systemctl --user stop libinput-gestures; ${lock}";
}
{
event = "after-resume";
command = "display on; systemctl --user start libinput-gestures";
}
{
event = "lock";
command = (display "off") + "; " + lock;
}
{
event = "unlock";
command = display "on";
}
];
events = {
before-sleep = "display off; systemctl --user stop libinput-gestures; ${lock}";
after-resume = "display on; systemctl --user start libinput-gestures";
lock = (display "off") + "; " + lock;
unlock = display "on";
};
};
}