21 lines
No EOL
447 B
Nix
21 lines
No EOL
447 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
config = lib.mkIf (lib.elem config.networking.hostName [ "FredOS-Gaming" "FredOS-Macbook" ]) {
|
|
services.flatpak = {
|
|
enable = true;
|
|
|
|
remotes = [
|
|
{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}
|
|
];
|
|
|
|
packages = [
|
|
# zen now installed via flake, no longer needed here
|
|
];
|
|
|
|
overrides = {};
|
|
};
|
|
};
|
|
} |