profiles/desktop: rename into profiles/system

It is causing some confusion since it is slowly gaining some
non-desktop-related functions too. A rename would be appropriate now.
This commit is contained in:
Gabriel Arazas 2022-04-17 00:12:19 +08:00
parent d5a1d093d1
commit 7ae53c1563
3 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@
};
profiles = {
desktop = {
system = {
enable = true;
fonts.enable = true;
};

View File

@ -12,7 +12,7 @@
profiles = {
agenix.enable = true;
archiving.enable = true;
desktop = {
system = {
enable = true;
audio.enable = true;
fonts.enable = true;

View File

@ -3,9 +3,9 @@
# That can be found in the `themes` module.
{ inputs, config, options, lib, pkgs, ... }:
let cfg = config.profiles.desktop;
let cfg = config.profiles.system;
in {
options.profiles.desktop = {
options.profiles.system = {
enable =
lib.mkEnableOption "all desktop-related services and default programs";
audio.enable =