nix/user/home/Voronind.nix

13 lines
231 B
Nix

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