13 lines
189 B
Nix
13 lines
189 B
Nix
{ lib, ... }:
|
|
{
|
|
hjem = {
|
|
users.ny = {
|
|
enable = true;
|
|
imports = [ ./programs ];
|
|
};
|
|
specialArgs = {
|
|
libmy = lib.my;
|
|
};
|
|
clobberByDefault = true;
|
|
};
|
|
}
|