summaryrefslogtreecommitdiff
path: root/modules/services/default.nix
blob: 38f4c428c5d75a508689453713684f4c21d894ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs, ... }:
{
  imports = [
    ./ananicy.nix
    ./dbus.nix
    ./fail2ban.nix
    ./libinput.nix
    ./openssh.nix
    ./pia.nix
    ./pipewire.nix
    ./resolved.nix
    ./xserver.nix
  ];

  services = {
    printing.enable = false;
    gnome.gnome-keyring.enable = true;
    fstrim.enable = true;
    gvfs.enable = true;
    udev.packages = with pkgs; [ pkgs.logitech-udev-rules ];
  };
}