runs nixfmt

This commit is contained in:
2024-11-18 15:04:20 +01:00
parent df08e01d9e
commit 4da793d37c
2 changed files with 33 additions and 3 deletions

View File

@ -1,10 +1,11 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
services.flatpak.enable = true;
systemd.services.flatpak-repo = {
wantedBy = [ "multi-user.target" ];
path = [ pkgs.flatpak ];
script = ''
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
'';
};
}
}