37 lines
690 B
Nix
37 lines
690 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.home-manager-stable.nixosModules.home-manager
|
|
];
|
|
users.users.user = {
|
|
isNormalUser = true;
|
|
description = "User";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
"wheel"
|
|
"syncthing"
|
|
"tss"
|
|
"dialout"
|
|
];
|
|
initialPassword = "password123";
|
|
};
|
|
|
|
home-manager.users.user = {pkgs, ...}: {
|
|
home.file = {
|
|
".zshrc".source = ../../dotfiles/.shellrc;
|
|
".bashrc".source = ../../dotfiles/.shellrc;
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
#
|
|
];
|
|
|
|
# The state version is required and should stay at the version you
|
|
# originally installed.
|
|
home.stateVersion = "24.05";
|
|
};
|
|
}
|