init options, move ralph, fix wallpapers

This commit is contained in:
jackjohn7 2026-03-28 20:32:24 -05:00
parent 401109204b
commit 85dd534f53
15 changed files with 123 additions and 181 deletions

View file

@ -1,20 +1,25 @@
{ self, inputs, ... }:
{
self,
inputs,
config,
...
}:
{
flake.nixosModules.user =
{ pkgs, lib, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.jingus = {
users.users."${config.username}" = {
isNormalUser = true;
description = "jingus";
description = "${config.username} user account";
extraGroups = [
"networkmanager"
"wheel"
"docker"
"dialout"
];
shell = pkgs.zsh;
packages = with pkgs; [
# thunderbird
];
};
hjem.users."${config.username}".enable = true;
};
}