diff options
| author | schererleander <leander@schererleander.de> | 2026-02-03 17:55:59 +0100 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2026-02-03 17:59:00 +0100 |
| commit | a88204fbc9ddec3474186bc5a3f3c573ee787289 (patch) | |
| tree | 71be63c1ebb33efcec2c65c3390ae7fadcf333db /modules/home/media/nixcord/default.nix | |
| parent | fca85a013c9f0d209a4b524f1eaef3f36e7029e3 (diff) | |
refactor(module): simplify modules and integrate sops-nix
Diffstat (limited to 'modules/home/media/nixcord/default.nix')
| -rw-r--r-- | modules/home/media/nixcord/default.nix | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/modules/home/media/nixcord/default.nix b/modules/home/media/nixcord/default.nix index 8f3b665..c7f2b4b 100644 --- a/modules/home/media/nixcord/default.nix +++ b/modules/home/media/nixcord/default.nix @@ -5,16 +5,11 @@ }: let cfg = config.nx.media.nixcord; - inherit (lib) mkEnableOption mkOption types mkIf; + inherit (lib) mkEnableOption mkIf; in { options.nx.media.nixcord = { enable = mkEnableOption "nixcord and setup"; - frameless = mkOption { - description = "Make discord frameless"; - type = types.bool; - default = true; - }; }; config = mkIf cfg.enable { programs.nixcord = { @@ -23,7 +18,7 @@ in themeLinks = [ "https://refact0r.github.io/system24/theme/system24.theme.css" ]; - frameless = cfg.frameless; + frameless = true; plugins = { alwaysAnimate.enable = false; imageLink.enable = true; @@ -33,4 +28,4 @@ in }; }; }; -} +}
\ No newline at end of file |
