this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

lint

Aria 3c412d6e 656e3f39

+7 -13
+1 -7
nix/hosts/heather/prometheus.nix
··· 1 - { 2 - pkgs, 3 - config, 4 - lib, 5 - ... 6 - }: 7 - { 1 + _: { 8 2 services.prometheus = { 9 3 enable = true; 10 4 configText = ''
+2 -2
nix/hosts/misc/todos.nix
··· 61 61 environment.persistence."/persist".files = [ 62 62 { 63 63 file = "/etc/nginx/webdav.passwd"; 64 - user = cfg.user; 65 - group = cfg.group; 64 + inherit (cfg) user; 65 + inherit (cfg) group; 66 66 mode = "0700"; 67 67 } 68 68 ];
+1 -1
nix/modules/services/freshrss.nix
··· 9 9 environment.persistence."/persist".directories = [ 10 10 { 11 11 directory = cfg.dataDir; 12 - user = cfg.user; 12 + inherit (cfg) user; 13 13 mode = "0700"; 14 14 } 15 15 ];
+1 -1
nix/pkgs/default.nix
··· 105 105 106 106 # From inputs.noctalia-qs 107 107 quickshell = final.callPackage "${inputs.noctalia-qs}/nix/package.nix" { 108 - version = inputs.noctalia-qs.version; 108 + inherit (inputs.noctalia-qs) version; 109 109 gitRev = inputs.noctalia-qs.revision; 110 110 }; 111 111
+2 -2
nix/pkgs/noctalia-shell-2176-lock-before-sleep.patch
··· 14 14 @@ -562,6 +562,50 @@ Singleton { 15 15 } 16 16 } 17 - 17 + 18 18 + // Lock screen before external suspend (power button, lid close) by 19 19 + // monitoring systemd-logind's PrepareForSleep D-Bus signal. 20 20 + Process { ··· 60 60 + } 61 61 + 62 62 property int lockAndSuspendCheckCount: 0 63 - 63 + 64 64 function lockAndSuspend() {