aboutsummaryrefslogtreecommitdiff
path: root/host/hephaestus.nix
blob: 9945ca5a2ccb632367e0e34570979bf4829379d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ pkgs, ... }:

{
  imports = [
    ../gui/default.nix
    ../gui/niri.nix
    ../gui/networkmanager.nix
  ];

  services = {
    kdeconnect.enable = true;
    screen-locker.enable = pkgs.lib.mkForce false;
  };
}