From ad10e13501f08f7761750860eebad553e6bfe7b7 Mon Sep 17 00:00:00 2001 From: Toast Date: Mon, 5 Feb 2024 12:59:20 +0100 Subject: [PATCH] Common: set up user --- roles/common/configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/common/configuration.nix b/roles/common/configuration.nix index a0d7fea..0666e24 100755 --- a/roles/common/configuration.nix +++ b/roles/common/configuration.nix @@ -59,6 +59,13 @@ services.fwupd.enable = true; + # Set up my user + users.users.toast = { + isNormalUser = true; + description = "Toast"; + extraGroupps = [ "wheel" ]; + }; + # Set up time zone. time.timeZone = "Europe/Madrid";