Merge pull request 'Update configuration.nix' (#2) from testing into main
Reviewed-on: #2
This commit is contained in:
commit
ff4ad7edcb
@ -183,6 +183,11 @@ in
|
|||||||
logseq
|
logseq
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
orca-slicer
|
orca-slicer
|
||||||
|
# ollama
|
||||||
|
oterm
|
||||||
|
# podman
|
||||||
|
podman
|
||||||
|
docker-compose
|
||||||
# package manager
|
# package manager
|
||||||
wget
|
wget
|
||||||
# web browser
|
# web browser
|
||||||
@ -190,6 +195,17 @@ in
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# flatpak
|
# flatpak
|
||||||
xdg.portal.enable = true;
|
xdg.portal.enable = true;
|
||||||
services.flatpak.enable = true;
|
services.flatpak.enable = true;
|
||||||
@ -234,7 +250,7 @@ in
|
|||||||
nix.gc = {
|
nix.gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
options = "--delete-older-than 30d";
|
options = "--delete-older-than 7d";
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable fwupd
|
# enable fwupd
|
||||||
|
Loading…
Reference in New Issue
Block a user