suspend is default for desktops now
This commit is contained in:
parent
b80f581000
commit
01e451aae0
2 changed files with 6 additions and 15 deletions
|
@ -91,19 +91,6 @@ in {
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
|
|
||||||
(job "deploy-terranix" {
|
|
||||||
url = "ssh://gogs@workhorse.private:2222/terranix/terranix.org.git";
|
|
||||||
credentialsId = gogs-id;
|
|
||||||
} [
|
|
||||||
{ "build" = [ "nix-shell --run build" ]; }
|
|
||||||
{
|
|
||||||
"publish" = [{
|
|
||||||
script = "nix-shell --run publish";
|
|
||||||
credentialsId = sshSputnik;
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
])
|
|
||||||
|
|
||||||
(job "sync-retiolum" {
|
(job "sync-retiolum" {
|
||||||
url = "git@github.com:krebs/retiolum.git";
|
url = "git@github.com:krebs/retiolum.git";
|
||||||
credentialsId = github-id;
|
credentialsId = github-id;
|
||||||
|
@ -207,6 +194,10 @@ in {
|
||||||
"ssh://gogs@workhorse.private:2222/terranix/terranix.git"
|
"ssh://gogs@workhorse.private:2222/terranix/terranix.git"
|
||||||
"git@github.com:mrVanDalo/terranix.git")
|
"git@github.com:mrVanDalo/terranix.git")
|
||||||
|
|
||||||
|
(sync-to-github "sync-terranix.org"
|
||||||
|
"ssh://gogs@workhorse.private:2222/terranix/terranix.org.git"
|
||||||
|
"git@github.com:mrVanDalo/terranix-website.git")
|
||||||
|
|
||||||
(sync-to-github "sync-terranix-hcloud"
|
(sync-to-github "sync-terranix-hcloud"
|
||||||
"ssh://gogs@workhorse.private:2222/terranix/hcloud.git"
|
"ssh://gogs@workhorse.private:2222/terranix/hcloud.git"
|
||||||
"git@github.com:mrVanDalo/terranix-hcloud.git")
|
"git@github.com:mrVanDalo/terranix-hcloud.git")
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, config, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
systemd.services.screenlock = {
|
systemd.services.screenlock = {
|
||||||
|
@ -22,6 +22,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "suspend";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue