1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-06 14:36:06 +02:00
git.oat.zone--dark-firepit-.../modules/desktop/services/swayidle.nix
2022-01-29 11:47:38 +00:00

23 lines
338 B
Nix

{ config, lib, pkgs, options, ... }:
with lib;
let
cfg = config.modules.desktop.services.swayidle;
in {
options.modules.desktop.services.swayidle = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf cfg.enable {
/*
user.packages = with pkgs; [
swayidle
];
*/
};
}