nix/user/home/Dasha.nix

11 lines
169 B
Nix

{ const, color, ... }: {
imports = [
(import ./Default.nix {
color = color;
const = const;
username = "dasha";
homeDir = "/home/dasha";
})
];
}