Split user configuration
This commit is contained in:
parent
eae3e9544c
commit
b227b7cb19
6 changed files with 25 additions and 23 deletions
9
users/functionalhacker/configuration.nix
Normal file
9
users/functionalhacker/configuration.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.functionalhacker = {
|
||||
description = "Marko";
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
}
|
15
users/functionalhacker/home.nix
Normal file
15
users/functionalhacker/home.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
home = {
|
||||
username = "functionalhacker";
|
||||
homeDirectory = "/home/functionalhacker";
|
||||
stateVersion = "24.05";
|
||||
|
||||
packages = with pkgs; [
|
||||
neofetch
|
||||
pass
|
||||
zsh
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue