NixOS module fun
- Group module settings into config files - no more root configuration outside of flake - added readme for future me
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# My user for now
|
||||
users.users.qmoran = {
|
||||
isNormalUser = true;
|
||||
description = "quin";
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"docker"
|
||||
"networkmanager"
|
||||
];
|
||||
packages = with pkgs; [
|
||||
gh
|
||||
btop
|
||||
ctop
|
||||
kdePackages.kate
|
||||
signal-desktop
|
||||
lazygit
|
||||
element-desktop
|
||||
vscodium
|
||||
vivaldi
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user