nix-config/hosts/work-ntb/default.nix
2024-09-19 17:30:03 +02:00

21 lines
457 B
Nix

{config, pkgs, inputs, ...}: {
imports = [
(import ../base {inherit config pkgs; hostname = "work-ntb"; })
];
# My own modules configuration
krop = {
ide = {
enable = true;
install-pycharm = true;
};
python.install-older = true;
};
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"krop" = import ./home.nix;
};
};
}