Refactor services

This commit is contained in:
♥ Minnie ♥ 2024-07-26 09:10:12 +08:00
parent ed06f7e925
commit 3de981c7dd
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 5 additions and 5 deletions

View file

@ -57,11 +57,6 @@
adb.enable = true; adb.enable = true;
}; };
services = {
# Enable a few other services.
pcscd.enable = true;
};
# Use docker instead of podman for our containers. # Use docker instead of podman for our containers.
virtualisation.docker = { virtualisation.docker = {
enable = true; enable = true;

View file

@ -9,4 +9,9 @@
./udev.nix ./udev.nix
./xserver.nix ./xserver.nix
]; ];
# Enable a few extra services.
services = {
pcscd.enable = true;
};
} }