From e42c61ffb87944b66b7cc246d7c301742fa5e749 Mon Sep 17 00:00:00 2001 From: sajenim Date: Tue, 7 May 2024 20:42:56 +0800 Subject: [PATCH] comment some stuff --- nixos/fuchsia/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/fuchsia/configuration.nix b/nixos/fuchsia/configuration.nix index 73f127b..5108739 100644 --- a/nixos/fuchsia/configuration.nix +++ b/nixos/fuchsia/configuration.nix @@ -55,10 +55,13 @@ }; services = { + # Enable necessary udev rules. udev.packages = with pkgs; [ openrgb qmk-udev-rules ]; + + # Setup our display server. xserver = { enable = true; layout = "au"; @@ -71,10 +74,12 @@ }; displayManager.startx.enable = true; }; + # Enable a few other services. ratbagd.enable = true; pcscd.enable = true; }; + # Use docker instead of podman for our containers. virtualisation.docker = { enable = true; liveRestore = false;