Revert "use element-desktop-wayland because total xorg death"
This reverts commit 95bfeaede4
.
This commit is contained in:
parent
95bfeaede4
commit
eba58fc407
1 changed files with 16 additions and 4 deletions
|
@ -1,10 +1,22 @@
|
|||
{ outputs, options, config, lib, pkgs, ... }:
|
||||
let cfg = config.modules.desktop.chat.element;
|
||||
{
|
||||
outputs,
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.modules.desktop.chat.element;
|
||||
in {
|
||||
options.modules.desktop.chat.element = { enable = lib.mkEnableOption false; };
|
||||
options.modules.desktop.chat.element = {
|
||||
enable = lib.mkEnableOption false;
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
users.users.sako.packages = with pkgs.stable; [ element-desktop-wayland ];
|
||||
users.users.sako.packages = with pkgs.stable; [
|
||||
element-desktop
|
||||
];
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue