nix-config/hosts/work-ntb/default.nix

16 lines
347 B
Nix
Raw Normal View History

2024-09-16 22:04:47 +02:00
{config, pkgs, inputs, ...}: {
imports = [
(import ../base {inherit config pkgs; hostname = "work-ntb"; })
];
# My own modules configuration
krop.devtools.installIDE = true;
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"krop" = import ./home.nix;
};
};
}