nix-config/hosts/work-ntb/default.nix
2024-10-18 16:17:05 +02:00

32 lines
502 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
networking.hostName = "work-ntb"; # Define your hostname.
# My own modules configuration
krop = {
ide = {
enable = true;
install-pycharm = true;
};
python.install-additional = true;
};
home-manager = {
extraSpecialArgs = {
inherit inputs;
};
users = {
"krop" = import ../../users/krop;
};
};
}