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