This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/system/services/default.nix

26 lines
395 B
Nix
Raw Normal View History

2023-12-01 12:55:49 +00:00
{
2023-08-26 10:32:53 +01:00
imports = [
2023-10-08 10:51:15 +01:00
./locate
./pipewire
2023-12-12 12:20:55 +00:00
./podman
2023-10-08 10:51:15 +01:00
./printing
./udev
./xdg-portal
2023-08-26 10:32:53 +01:00
];
services = {
2023-12-21 17:33:57 +00:00
avahi.enable = true;
2023-08-26 10:32:53 +01:00
blueman.enable = true;
flatpak.enable = true;
2023-12-29 23:19:10 +00:00
gnome.gnome-keyring.enable = true;
2023-08-26 10:32:53 +01:00
gvfs.enable = true;
openssh.enable = true;
udisks2.enable = true;
fstrim = {
enable = true;
interval = "weekly";
};
};
}