diff --git a/templates/clan/default/modules/shared.nix b/templates/clan/default/modules/shared.nix deleted file mode 100644 index 672e4e23b..000000000 --- a/templates/clan/default/modules/shared.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - clan-core, - # Optional, if you want to access other flakes: - # self, - ... -}: -{ - imports = [ - clan-core.clanModules.user-password - ]; - - # Locale service discovery and mDNS - services.avahi.enable = true; - - # generate a random password for our user below - # can be read using `clan secrets get -user-password` command - clan.user-password.user = "user"; - users.users.user = { - isNormalUser = true; - extraGroups = [ - "wheel" - "networkmanager" - "video" - "input" - ]; - }; -}