dotfiles/home/Docker.nix

14 lines
188 B
Nix

{
inputs,
config,
pkgs,
...
}: {
home.username = "user";
home.homeDirectory = "/home/user";
imports = [
(import ./utils/common.nix {inherit inputs config pkgs;})
];
}