fix screensharing and add workspaces
This commit is contained in:
@@ -14,6 +14,7 @@ in
|
||||
man-pages
|
||||
kate
|
||||
jetbrains.idea-ultimate
|
||||
typescript
|
||||
#jetbrains.clion
|
||||
insomnia
|
||||
nodejs_22 # needed for tabby extension
|
||||
|
||||
@@ -45,7 +45,7 @@ in {
|
||||
};
|
||||
|
||||
xdg.portal.enable = true;
|
||||
xdg.portal.extraPortals = lib.mkDefault [ pkgs.xdg-desktop-portal-gtk ];
|
||||
xdg.portal.extraPortals = lib.mkDefault [ pkgs.xdg-desktop-portal-gtk pkgs.xdg-desktop-portal-hyprland ];
|
||||
|
||||
programs.hyprland = { enable = true; };
|
||||
|
||||
@@ -62,6 +62,7 @@ in {
|
||||
networkmanagerapplet
|
||||
wayland
|
||||
wl-clipboard
|
||||
dex # starts applications according to .desktop files
|
||||
#qt5.qtwayland
|
||||
#qt6.qmake
|
||||
#qt6.qtwayland
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
{config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
{config, pkgs, lib, ...}:
|
||||
let
|
||||
cfg = config.custom.graphical.noise-supression;
|
||||
in
|
||||
{
|
||||
options.custom.graphical.noise-supression = {
|
||||
enable = mkEnableOption "Enables noise-supression";
|
||||
enable = lib.mkEnableOption "Enables noise-supression";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.noisetorch.enable = true;
|
||||
environment.systemPackages = [
|
||||
pkgs.easyeffects
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
easyeffects
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user