mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-10-02 06:54:49 +02:00
more buldak configuration
This commit is contained in:
parent
43733e4a4a
commit
9d41a6fa81
4 changed files with 94 additions and 14 deletions
21
hosts/buldak/features/software.nix
Normal file
21
hosts/buldak/features/software.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
zathura
|
||||
bitwarden
|
||||
nil
|
||||
obs-studio
|
||||
osu-lazer-bin
|
||||
];
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue