From 0c444e9722c4a3de2af3ed6e9f2b2afefb0653ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 3 May 2025 14:51:47 +0200 Subject: [PATCH] feat(users): remove guest account --- common.nix | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/common.nix b/common.nix index ee13e05..8275756 100644 --- a/common.nix +++ b/common.nix @@ -111,18 +111,6 @@ # access to /pile/Music users.groups.music = {}; - users.users.guest = { - createHome = true; - isNormalUser = true; - description = "Guest Account"; - extraGroups = ["networkmanager"]; - shell = pkgs.zsh; - packages = with pkgs; [ - mpv - vlc - ]; - }; - # Install firefox. programs.firefox.enable = true;