Move files

This commit is contained in:
Aaron Honeycutt 2023-01-16 13:24:13 -07:00
parent 910b84667f
commit 6e79433ebc
4 changed files with 0 additions and 0 deletions

View file

@ -1,20 +0,0 @@
{ config, pkgs, ... }:
{
# Desktop
services.xserver = {
enable = true;
desktopManager.pantheon.enable = true;
};
# Remove Pantheon packages
environment.pantheon.excludePackages = (with pkgs; [
pantheon.appcenter # AppCenter as it can't be used on NixOS
]);
# Hacks
systemd.extraConfig = ''
DefaultTimeoutStopSec=10s
DefaultTimeoutStartSec=10s
'';
}