NixOS/hosts/orion/modules/user.nix
Price Hiller 61671baedc
initial commit
TODO: Modify `orion`'s filesystem file to be accurate to the laptop, not
a VM
2023-09-17 03:40:50 -05:00

38 lines
562 B
Nix

{ pkgs, user, ... }:
let
user = "price";
in
{
programs = {
zsh.enable = true;
};
nixpkgs.config.allowUnfree = true;
users.users = {
root.initialPassword = "pass";
"${user}" = {
initialPassword = "pass";
shell = pkgs.zsh;
isNormalUser = true;
description = "${user}";
extraGroups = [
"wheel"
"docker"
"nix-users"
"libvirt"
"log"
];
};
};
environment.systemPackages = with pkgs; [
ungoogled-chromium
wezterm
yamllint
stylua
eza
];
}