Joey Hafner 81fe9f2b8d Big update:
- Add category 'services' for stuff to run in the background.
- Add flatpak, kdeconnect, nextcloud, protonmail, ollama to services.
- Add game-controller file for drivers and config tools.
- Refactor flatpaks and packages from home.nix to relevant files:
  -  Mission Center (flatpak) -> taskmanager.nix
  - Losslesscut (flatpak) -> multimedia.nix
  - PrismLauncher (flatpak) -> minecraft.nix
  - VLC (flatpak & system package) -> multimedia.nix
  - Fastfetch (package) -> terminal.nix
  - kdeconnect (package) -> services/kdeconnect.nix
  - Protonmail app and bridge -> services/protonmail.nix
  - obsidian -> obsidian.nix
2024-12-06 13:53:58 -08:00

11 lines
269 B
Nix

{ pkgs, ... }: {
services.flatpak = {
enable = true;
uninstallUnmanaged = true;
remotes = [
{ name = "flathub"; location = "https://flathub.org/repo/flathub.flatpakrepo"; }
];
packages = [ ];
};
home.packages = with pkgs; [ flatpak ];
}