dotfiles/home/Docker.nix

10 lines
182 B
Nix
Raw Normal View History

2024-06-21 14:03:01 +02:00
{ inputs, config, pkgs, ... }:
{
2024-06-21 17:25:14 +02:00
home.username = "user";
home.homeDirectory = "/home/user";
2024-06-21 14:03:01 +02:00
imports = [
(import ./utils/common.nix { inherit inputs config pkgs; })
];
}