10 lines
141 B
Nix
10 lines
141 B
Nix
|
{ const, ... }: {
|
||
|
imports = [
|
||
|
(import ./Default.nix {
|
||
|
const = const;
|
||
|
username = "dasha";
|
||
|
homeDir = "/home/dasha";
|
||
|
})
|
||
|
];
|
||
|
}
|