mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
20 lines
387 B
Nix
20 lines
387 B
Nix
{ 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
|
|
'';
|
|
}
|