mirror of
https://github.com/lxstinthesky/matrix.git
synced 2025-11-02 17:02:47 +00:00
A simple flake setup with tests and VM support
This commit is contained in:
29
nix/users/users.nix
Normal file
29
nix/users/users.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
# Define user accounts
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
users.users.neo = {
|
||||
isNormalUser = true;
|
||||
description = "Matrix User 1";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
|
||||
users.users.morpheus = {
|
||||
isNormalUser = true;
|
||||
description = "Matrix User 2";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
|
||||
users.users.trinity = {
|
||||
isNormalUser = true;
|
||||
description = "Matrix User 3";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [ ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user