mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
15 lines
287 B
Nix
15 lines
287 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
|
|
]);
|
|
|
|
}
|