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