about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJosé Romildo Malaquias <malaquias@gmail.com>2019-04-19 11:04:55 -0300
committerJosé Romildo Malaquias <malaquias@gmail.com>2019-05-05 17:14:41 -0300
commit6121a8e3b53e1438d02c814864ab85b230f58adc (patch)
tree5c1f1fa6a587fea2e6508661baa070c76dcd1202 /nixos
parent7c60ac71cf0712b45ecd322acad9db11e4d56f3c (diff)
downloadnixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar.gz
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar.bz2
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar.lz
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar.xz
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.tar.zst
nixlib-6121a8e3b53e1438d02c814864ab85b230f58adc.zip
nixos/deepin: fix the deepin-daemon user and group
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/desktops/deepin/deepin.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/services/desktops/deepin/deepin.nix b/nixos/modules/services/desktops/deepin/deepin.nix
index f3dfd78d0ff5..192dec48308e 100644
--- a/nixos/modules/services/desktops/deepin/deepin.nix
+++ b/nixos/modules/services/desktops/deepin/deepin.nix
@@ -44,11 +44,11 @@
         isSystemUser = true;
       };
 
-      users.groups.dde-daemon = { };
+      users.groups.deepin-daemon = { };
 
-      users.users.dde-daemon = {
+      users.users.deepin-daemon = {
         description = "Deepin daemon user";
-        group = "dde-daemon";
+        group = "deepin-daemon";
         isSystemUser = true;
       };
     })