suspend is default for desktops now

This commit is contained in:
Ingolf Wagner 2020-01-20 19:24:49 +13:00
parent b80f581000
commit 01e451aae0
Signed by: palo
GPG key ID: 76BF5F1928B9618B
2 changed files with 6 additions and 15 deletions

View file

@ -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" {
url = "git@github.com:krebs/retiolum.git";
credentialsId = github-id;
@ -207,6 +194,10 @@ in {
"ssh://gogs@workhorse.private:2222/terranix/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"
"ssh://gogs@workhorse.private:2222/terranix/hcloud.git"
"git@github.com:mrVanDalo/terranix-hcloud.git")

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }:
{ pkgs, config, lib, ... }:
{
systemd.services.screenlock = {
@ -22,6 +22,6 @@
};
};
services.logind.lidSwitch = "ignore";
services.logind.lidSwitch = "suspend";
}