diff options
| author | Fuwn <[email protected]> | 2024-09-22 15:15:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-22 15:15:46 -0700 |
| commit | 08d4be5b51bb595e55555cc93c47f7adc77ed1c3 (patch) | |
| tree | b89c6b008116fba278b9fc5238c8a1a0f3efbbec /modules/core/software/desktop | |
| parent | core: move variables and virtualisation to desktop (diff) | |
| download | nixos-config-08d4be5b51bb595e55555cc93c47f7adc77ed1c3.tar.xz nixos-config-08d4be5b51bb595e55555cc93c47f7adc77ed1c3.zip | |
core: move harware and software to desktop
Diffstat (limited to 'modules/core/software/desktop')
| -rw-r--r-- | modules/core/software/desktop/default.nix | 6 | ||||
| -rw-r--r-- | modules/core/software/desktop/gtk.nix | 8 | ||||
| -rw-r--r-- | modules/core/software/desktop/xdg-portal.nix | 15 |
3 files changed, 0 insertions, 29 deletions
diff --git a/modules/core/software/desktop/default.nix b/modules/core/software/desktop/default.nix deleted file mode 100644 index bd2c811..0000000 --- a/modules/core/software/desktop/default.nix +++ /dev/null @@ -1,6 +0,0 @@ -{ - imports = [ - ./gtk.nix - ./xdg-portal.nix - ]; -} diff --git a/modules/core/software/desktop/gtk.nix b/modules/core/software/desktop/gtk.nix deleted file mode 100644 index 4357e75..0000000 --- a/modules/core/software/desktop/gtk.nix +++ /dev/null @@ -1,8 +0,0 @@ -{ pkgs, ... }: -{ - environment.systemPackages = with pkgs; [ - gtk2 - gtk3 - gtk4 - ]; -} diff --git a/modules/core/software/desktop/xdg-portal.nix b/modules/core/software/desktop/xdg-portal.nix deleted file mode 100644 index 72bcb97..0000000 --- a/modules/core/software/desktop/xdg-portal.nix +++ /dev/null @@ -1,15 +0,0 @@ -{ pkgs, ... }: -{ - xdg.portal = { - enable = true; - config.common.default = "*"; - # wlr.enable = true; - # xdgOpenUsePortal = true; - - extraPortals = with pkgs; [ - xdg-desktop-portal-wlr - xdg-desktop-portal-gtk - xdg-desktop-portal-gnome - ]; - }; -} |