migrate configuration.nix into flexible modular flake setup
This commit is contained in:
14
modules/users.nix
Normal file
14
modules/users.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Define the main user account
|
||||
users = {
|
||||
users.schulze = {
|
||||
isNormalUser = true;
|
||||
description = "Felix Schulze";
|
||||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||
shell = pkgs.fish;
|
||||
};
|
||||
groups.libvirtd.members = ["schulze"];
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user