Compare commits
No commits in common. "3d644b885ac434af1f2efbc77c83ce33a05c2eef" and "2ac1cc6fed9e86167bd6b60455a0c1d8314f6ade" have entirely different histories.
3d644b885a
...
2ac1cc6fed
@ -196,11 +196,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-krypton": {
|
"nixpkgs-krypton": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1706371002,
|
"lastModified": 1701253981,
|
||||||
"narHash": "sha256-dwuorKimqSYgyu8Cw6ncKhyQjUDOyuXoxDTVmAXq88s=",
|
"narHash": "sha256-ztaDIyZ7HrTAfEEUt9AtTDNoCYxUdSd6NrRHaYOIxtk=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c002c6aa977ad22c60398daaa9be52f2203d0006",
|
"rev": "e92039b55bcd58469325ded85d4f58dd5a4eaf58",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
../../configuration/proxmox-vm
|
../../configuration/proxmox-vm
|
||||||
|
|
||||||
./nixfiles-updated-inputs.nix
|
./nixfiles-updated-inputs.nix
|
||||||
./polkit-test.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
boot.loader.grub.enable = true;
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
security.polkit.enable = true;
|
|
||||||
security.polkit.extraConfig = ''
|
|
||||||
polkit.addRule(function(action, subject) {
|
|
||||||
if (
|
|
||||||
action.id == "org.freedesktop.systemd1.manage-units"
|
|
||||||
&& action.lookup("unit") == "update-from-hydra-olimex-esp32-poe.service"
|
|
||||||
&& action.lookup("verb") == "start"
|
|
||||||
&& subject.user == "clerie"
|
|
||||||
) {
|
|
||||||
return polkit.Result.YES;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
'';
|
|
||||||
|
|
||||||
services.update-from-hydra.paths.olimex-esp32-poe = {
|
|
||||||
enable = true;
|
|
||||||
hydraUrl = "https://hydra.clerie.de";
|
|
||||||
hydraProject = "clerie";
|
|
||||||
hydraJobset = "olimex-esp32-poe";
|
|
||||||
hydraJob = "olimex-esp32-poe";
|
|
||||||
nixStoreUri = "https://nix-cache.clerie.de";
|
|
||||||
resultPath = "/srv/olimex-esp32-poe";
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user