mirror of
https://github.com/divnix/digga.git
synced 2024-12-25 17:14:38 +03:00
15 lines
258 B
Nix
15 lines
258 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
home-manager.users.nixos = {
|
||
|
imports = [ ../profiles/git ../profiles/direnv ];
|
||
|
};
|
||
|
|
||
|
users.users.nixos = {
|
||
|
uid = 1000;
|
||
|
password = "nixos";
|
||
|
description = "default";
|
||
|
isNormalUser = true;
|
||
|
extraGroups = [ "wheel" ];
|
||
|
};
|
||
|
}
|