This commit is contained in:
Daniel Flanagan 2023-08-24 21:46:44 -05:00
parent 9391476521
commit 4ef9e55134
2 changed files with 23 additions and 0 deletions

View File

@ -12,6 +12,9 @@ input type:keyboard {
# events disabled
# }
output "Dell Inc. DELL U2720Q CWTM623" transform 0 scale 1.0
output "Dell Inc. DELL U2720Q CWTM623" mode 3840x2160
input type:touchpad {
}

View File

@ -61,6 +61,7 @@ in
};
};
hardware.bluetooth.enable = true;
hardware.opengl = {
enable = true;
driSupport32Bit = true;
@ -197,12 +198,14 @@ in
nil
nixpkgs-fmt
noto-fonts
openssl
pamixer
(pass.withExtensions (exts: [ exts.pass-otp ]))
pavucontrol
pciutils
pgcli
playerctl
podman-compose
pulseaudio
pulsemixer
rclone
@ -311,6 +314,23 @@ in
'';
};
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;
};
oci-containers = {
backend = "podman";
};
};
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 22 ];
networking.firewall.allowedUDPPorts = [ ];