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 # events disabled
# } # }
output "Dell Inc. DELL U2720Q CWTM623" transform 0 scale 1.0
output "Dell Inc. DELL U2720Q CWTM623" mode 3840x2160
input type:touchpad { input type:touchpad {
} }

View File

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