Compare commits

..

3 Commits

Author SHA1 Message Date
thomas 38ee805597 start handy on startup
helium update / update-helium (push) Successful in 12s
zen browser update / update-zen-browser (push) Successful in 11s
handy update / update-handy (push) Successful in 9s
t3code update / update-t3code (push) Successful in 11s
2026-03-25 19:31:24 +00:00
thomas a6d9984871 nextcloud-client 2026-03-25 19:23:47 +00:00
thomas e0b3b8e35c update flake 2026-03-25 18:58:59 +00:00
2 changed files with 16 additions and 3 deletions
Generated
+3 -3
View File
@@ -185,11 +185,11 @@
}, },
"nixpkgs_3": { "nixpkgs_3": {
"locked": { "locked": {
"lastModified": 1773821835, "lastModified": 1774106199,
"narHash": "sha256-TJ3lSQtW0E2JrznGVm8hOQGVpXjJyXY2guAxku2O9A4=", "narHash": "sha256-US5Tda2sKmjrg2lNHQL3jRQ6p96cgfWh3J1QBliQ8Ws=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b40629efe5d6ec48dd1efba650c797ddbd39ace0", "rev": "6c9a78c09ff4d6c21d0319114873508a6ec01655",
"type": "github" "type": "github"
}, },
"original": { "original": {
+13
View File
@@ -19,6 +19,7 @@
slack slack
feishin feishin
obsidian obsidian
nextcloud-client
self.packages.${pkgs.stdenv.hostPlatform.system}.handy self.packages.${pkgs.stdenv.hostPlatform.system}.handy
self.packages.${pkgs.stdenv.hostPlatform.system}.t3code self.packages.${pkgs.stdenv.hostPlatform.system}.t3code
mpv mpv
@@ -28,5 +29,17 @@
jjui jjui
bat bat
]; ];
systemd.user.services.handy = {
description = "Handy";
wantedBy = ["graphical-session.target"];
partOf = ["graphical-session.target"];
after = ["graphical-session.target"];
serviceConfig = {
ExecStart = "${self.packages.${pkgs.stdenv.hostPlatform.system}.handy}/bin/handy";
Restart = "on-failure";
RestartSec = 5;
};
};
}; };
} }