12 lines
365 B
Nix
12 lines
365 B
Nix
# NOTE(starter): This is just a basic enabling of the XFCE windows manager for simplicity
|
|
{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
|
|
'';
|
|
};
|
|
}
|