DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

1af64979e6fd1d5acbb6c31e85a197ed04744ada — Jonni Liljamo 15 days ago 8cded36
j: init
1 files changed, 11 insertions(+), 0 deletions(-)

A modules/users/j.nix
A modules/users/j.nix => modules/users/j.nix +11 -0
@@ 0,0 1,11 @@
let
  username = "j";
in {
  flake.modules.nixos.${username} = {...}: {
    users.users.${username} = {
      isNormalUser = true;
      extraGroups = ["wheel"];
      home = "/home/${username}";
    };
  };
}