nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

user.nix (267B)


      1 { pkgs, username, fullname, ... }:
      2 {
      3   users.users."${username}" = {
      4     isNormalUser = true;
      5     description = "${fullname}";
      6     shell = pkgs.fish;
      7     extraGroups = [ "networkmanager" "wheel" "video" ];
      8   };
      9 
     10   # Enable fish shell
     11   programs.fish.enable = true;
     12 }