From 0f2c55992677e78d5d2908d0648e410ef9b27436 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 23 Sep 2017 13:59:19 +0200 Subject: Organise modules into folders --- modules/configuration/user.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/configuration/user.nix (limited to 'modules/configuration/user.nix') diff --git a/modules/configuration/user.nix b/modules/configuration/user.nix new file mode 100644 index 0000000..1b2b674 --- /dev/null +++ b/modules/configuration/user.nix @@ -0,0 +1,11 @@ +{ config, pkgs, ... }: + +{ users.extraUsers.alan = { + description = "Alan Pearce"; + isNormalUser = true; + extraGroups = [ "audio" "wheel" "adbusers" "docker" ]; + shell = "/run/current-system/sw/bin/zsh"; + home = "/home/alan"; + uid = 1000; + }; +} -- cgit 1.4.1