liminalOS/reference/users/youwen/nixos.nix
Youwen Wu b63c4c3cd1
feat: overhaul nushell completions and make login shell
Now that we can use the Fish completion engine in nushell, it's good
enough that I'm making it the login shell for the time being
2025-02-10 16:22:14 -08:00

13 lines
300 B
Nix

{ pkgs, ... }:
{
users.users.youwen = {
isNormalUser = true;
description = "Youwen Wu";
extraGroups = [
"networkmanager"
"wheel"
];
shell = pkgs.nushell;
initialHashedPassword = "$y$j9T$v0OkEeCntj8KwgPJQxyWx0$dx8WtFDYgZZ8WE3FWetWwRfutjQkznRuJ0IG3LLAtP2";
};
}