Luke Else 82e18d878b
Some checks failed
NixOS Configuration Check / nixos-check (push) Failing after 23s
Updated config and install script to hopefully work with encryption
2025-04-24 21:01:21 +01:00

16 lines
273 B
Nix

{ config, pkgs, ... }:
{
users.users."luke-else" = {
isNormalUser = true;
home = "/home/luke-else";
shell = pkgs.zsh;
extraGroups = [ "wheel" "networkmanager" "docker" ];
};
security.sudo = {
enable = true;
wheelNeedsPassword = true;
};
}