Desktop:enable flatpak

This commit is contained in:
Toast 2023-08-12 14:04:45 +02:00
parent 7e0a707db5
commit bc899d5901
2 changed files with 6 additions and 0 deletions

View file

@ -3,5 +3,6 @@
{
imports = [
./ssh-agent.nix
./flatpak.nix
];
}

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
services.flatpak.enable = true;
}