nix/user/home/Voronind.nix

11 lines
175 B
Nix
Raw Normal View History

2024-04-02 22:54:00 +03:00
{ const, color, ... }: {
imports = [
(import ./Default.nix {
2024-04-02 22:54:00 +03:00
color = color;
const = const;
username = "voronind";
homeDir = "/home/voronind";
})
];
}