mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-08-08 06:30:18 +02:00
38 lines
789 B
Nix
38 lines
789 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
nixpkgs.config.allowUnfreePredicate =
|
|
pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"davinci-resolve"
|
|
"vscode"
|
|
"tetrio-desktop"
|
|
"beeper"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
zathura
|
|
libreoffice-qt
|
|
hunspell
|
|
hunspellDicts.fr-any
|
|
hunspellDicts.en-gb-large
|
|
|
|
# recording software
|
|
obs-studio
|
|
|
|
gvfs
|
|
nil
|
|
bitwarden
|
|
qutebrowser
|
|
];
|
|
|
|
virtualisation.containers.enable = true;
|
|
virtualisation = {
|
|
podman = {
|
|
enable = true;
|
|
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
|
dockerCompat = true;
|
|
# Required for containers under podman-compose to be able to talk to each other.
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
};
|
|
}
|