update && change xdragon to dragon-drop in lf && remove webcord
nixos config pipeline / show-flake (push) Successful in 30s
nixos config pipeline / deploy (push) Successful in 3m6s

This commit is contained in:
smayzy
2025-11-10 13:44:50 +01:00
parent 56c920d58e
commit c41e4cd6e9
7 changed files with 18 additions and 46 deletions
-1
View File
@@ -3,6 +3,5 @@
imports = [
./element.nix
./thunderbird.nix
./webcord.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.webcord.enable = mkOption {
type = types.bool;
default = false;
description = "webcord";
};
config = mkIf config.smayzy.webcord.enable {
environment.systemPackages = with pkgs; [
webcord
];
};
}