Add flatpak and fix hypr* issues

This commit is contained in:
Zeph Levy 2026-01-07 17:26:56 +01:00
parent 706b35f0f5
commit 5fbaaa8b28
3 changed files with 21 additions and 9 deletions

View file

@ -12,6 +12,15 @@
defaultNetwork.settings = { dns_enabled = true; };
};
};
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
'';
};
users = {
defaultUserShell = pkgs.bash;