Initial setup
This commit is contained in:
commit
ac3f55966b
9 changed files with 285 additions and 0 deletions
15
users.nix
Normal file
15
users.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
programs.fish.enable = true;
|
||||
|
||||
users.users.lucas = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
|
||||
shell = pkgs.fish;
|
||||
|
||||
packages = with pkgs; [eza];
|
||||
|
||||
hashedPassword =
|
||||
"$6$X.mw03yY/VFjDThj$t1I68HZz6NBihZGhiJ6Ct8ZuOufX6ZX9pydnK4puTjT1XKfMO1FY5VL1DwywJHrXOEJtohV99TmrABfjdBQY21";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue