aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-12-03 14:09:38 +0100
committerAdrian Kummerlaender2022-12-03 14:09:38 +0100
commit2473287794dfa5a4735fd7b5ae5f7a2be68895a2 (patch)
tree7ce29887501b8a99ab612ee0318dc3dfc8625063
parent516fb14e5aa9559599f724e89687b7812da4ee7a (diff)
downloadnixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar.gz
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar.bz2
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar.lz
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar.xz
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.tar.zst
nixos_home-2473287794dfa5a4735fd7b5ae5f7a2be68895a2.zip
Disable automatic screen lock on hephaestus
-rw-r--r--host/hephaestus.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/host/hephaestus.nix b/host/hephaestus.nix
index 9410f15..ca1edd4 100644
--- a/host/hephaestus.nix
+++ b/host/hephaestus.nix
@@ -8,7 +8,8 @@
../gui/stalonetray.nix
];
- services.kdeconnect = {
- enable = true;
+ services = {
+ kdeconnect.enable = true;
+ screen-locker.enable = pkgs.lib.mkForce false;
};
}