fc2ca20f6d
- Group module settings into config files - no more root configuration outside of flake - added readme for future me
25 lines
386 B
Nix
25 lines
386 B
Nix
{ 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
|
|
];
|
|
};
|
|
} |