summaryrefslogtreecommitdiff
path: root/hm/soft/swaylock.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
committeradikro <adikro@disroot.org>2025-12-20 15:25:38 +0100
commitc1d9af57156f3c95590d9a12c394ee064df9696e (patch)
tree7e515761590c510c30329ef8548c7d84a8e95aaa /hm/soft/swaylock.nix
parent791bc419b6dac7c70951981ef6b34cdf85828470 (diff)
added disko config for laptop, added storage and memory modules
Diffstat (limited to 'hm/soft/swaylock.nix')
-rw-r--r--hm/soft/swaylock.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/hm/soft/swaylock.nix b/hm/soft/swaylock.nix
deleted file mode 100644
index a303e48..0000000
--- a/hm/soft/swaylock.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- cfg = config.szpont.hm.soft.swaylock;
-in
-{
- options.szpont.hm.soft.swaylock.enable = lib.mkEnableOption "enables swaylock";
-
- config = lib.mkIf cfg.enable {
- programs.swaylock = {
- enable = true;
- package = pkgs.swaylock-effects;
- };
- };
-}