summaryrefslogtreecommitdiff
path: root/host/software
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-10-16 10:15:31 +0200
committerAdrian Kummerlaender2022-10-16 10:15:31 +0200
commitbc3e89851af5efccd7129f319c23f19c8c766907 (patch)
tree1a433df353be988a14b071881e9cf644bf52b936 /host/software
parentb6a13bc765523a71a3713b4ace54c09c4c05f61d (diff)
downloadnixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar.gz
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar.bz2
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar.lz
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar.xz
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.tar.zst
nixos_system-bc3e89851af5efccd7129f319c23f19c8c766907.zip
Fix typo
Diffstat (limited to 'host/software')
-rw-r--r--host/software/desktop/xterm.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/software/desktop/xterm.nix b/host/software/desktop/xterm.nix
index b5c012f..53fdd3e 100644
--- a/host/software/desktop/xterm.nix
+++ b/host/software/desktop/xterm.nix
@@ -1,8 +1,8 @@
{ pkgs, ... }:
{
- services = {
- xserver.lightdm.enable = true;
+ services.xserver = {
+ displayManager.lightdm.enable = true;
desktopManager.xterm.enable = true;
};
}