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:
2026-03-13 23:21:46 -04:00
parent 18cef3676c
commit fc2ca20f6d
8 changed files with 137 additions and 115 deletions
+25
View File
@@ -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
];
};
}