dotfiles.nix/nixos/fuchsia/services/default.nix

16 lines
217 B
Nix
Raw Normal View History

2024-08-08 09:02:42 +08:00
{...}: {
2024-04-01 10:04:20 +08:00
imports = [
2024-08-30 22:03:59 +08:00
./printer
2024-04-01 10:04:20 +08:00
./amdgpu-clocks.nix
2024-07-26 08:55:55 +08:00
./flatpak.nix
2024-07-26 09:08:32 +08:00
./libinput.nix
2024-07-26 09:03:58 +08:00
./udev.nix
2024-07-26 08:58:52 +08:00
./xserver.nix
2024-04-01 10:04:20 +08:00
];
2024-07-26 09:10:12 +08:00
# Enable a few extra services.
services = {
pcscd.enable = true;
};
2024-04-01 10:04:20 +08:00
}