aboutsummaryrefslogtreecommitdiffstats
path: root/flatpak.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flatpak.nix')
-rw-r--r--flatpak.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/flatpak.nix b/flatpak.nix
index 73352a6..fcc208d 100644
--- a/flatpak.nix
+++ b/flatpak.nix
@@ -1,9 +1,11 @@
-{ config, pkgs, ... }:
-
{
- services.flatpak.enable = true;
- fileSystems."/var/lib/flatpak" = {
- device = "/srv/flatpak";
- options = [ "bind" ];
- };
+ config,
+ pkgs,
+ ...
+}: {
+ services.flatpak.enable = true;
+ fileSystems."/var/lib/flatpak" = {
+ device = "/srv/flatpak";
+ options = ["bind"];
+ };
}