mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
26 lines
358 B
Nix
26 lines
358 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = with inputs.self.nixosModules; [
|
|
desktop
|
|
nvim
|
|
|
|
gui
|
|
nix-ld
|
|
];
|
|
|
|
users = {
|
|
extraUsers = {
|
|
daylin = {
|
|
shell = pkgs.zsh;
|
|
isNormalUser = true;
|
|
extraGroups = ["wheel" "docker" "networkmanager"];
|
|
initialPassword = "nix";
|
|
};
|
|
};
|
|
};
|
|
}
|