dotfiles/home/Docker.nix

10 lines
194 B
Nix
Raw Normal View History

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