From 1fdbb44df1c3b8c0bab9e36cee3e8167e102efc3 Mon Sep 17 00:00:00 2001 From: Quentin Aristote Date: Fri, 17 Feb 2023 21:22:14 +0100 Subject: add filtron and rss-bridge modules --- modules/nixos/user.nix | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 modules/nixos/user.nix (limited to 'modules/nixos/user.nix') diff --git a/modules/nixos/user.nix b/modules/nixos/user.nix deleted file mode 100644 index 0d1585e..0000000 --- a/modules/nixos/user.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ config, lib, ... }: - -let cfg = config.personal.user; -in { - options.personal.user = { - enable = lib.mkEnableOption "main user"; - name = lib.mkOption { - type = lib.types.str; - default = "qaristote"; - }; - }; - - config.users.users."${cfg.name}" = lib.mkIf cfg.enable { - isNormalUser = true; - extraGroups = [ "wheel" ] ++ lib.optional config.sound.enable "sound" - ++ lib.optional config.networking.networkmanager.enable "networkmanager"; - openssh.authorizedKeys.keys = [ - "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK4wGbl3++lqCjLUhoRyABBrVEeNhIXYO4371srkRoyq qaristote@latitude-7490" - ]; - - }; -} -- cgit v1.2.3