From c6c3ecb1e93c046597b719b74fb52d8462a4f004 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Tue, 24 Sep 2024 11:23:13 +0200 Subject: [PATCH] Install flatpak --- system/roles/workstation/services/default.nix | 1 + system/roles/workstation/services/flatpak.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 system/roles/workstation/services/flatpak.nix diff --git a/system/roles/workstation/services/default.nix b/system/roles/workstation/services/default.nix index f84bb73..57092cd 100644 --- a/system/roles/workstation/services/default.nix +++ b/system/roles/workstation/services/default.nix @@ -6,5 +6,6 @@ ./misc.nix ./logind.nix ./gnome-keyring.nix + ./flatpak.nix ]; } diff --git a/system/roles/workstation/services/flatpak.nix b/system/roles/workstation/services/flatpak.nix new file mode 100644 index 0000000..1ff0c53 --- /dev/null +++ b/system/roles/workstation/services/flatpak.nix @@ -0,0 +1,3 @@ +{ + services.flatpak.enable = true; +}