initial config
This commit is contained in:
21
modules/system/user.nix
Normal file
21
modules/system/user.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
# ==========================================
|
||||
# USER CONFIGURATION
|
||||
# ==========================================
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.matiss = {
|
||||
isNormalUser = true;
|
||||
description = "Matiss";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" "video" "render" "input" ];
|
||||
shell = pkgs.zsh;
|
||||
};
|
||||
|
||||
# Core system packages (available to all users)
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
vim
|
||||
wget
|
||||
curl
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user