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

18 lines
223 B
Nix
Raw Normal View History

2024-04-01 10:04:20 +08:00
{ ... }:
{
imports = [
./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:01:05 +08:00
./ollama.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
}