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

22 lines
457 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
2024-09-19 17:30:03 +02:00
krop = {
ide = {
enable = true;
install-pycharm = true;
};
python.install-older = true;
};
2024-09-16 22:04:47 +02:00
home-manager = {
extraSpecialArgs = { inherit inputs; };
users = {
"krop" = import ./home.nix;
};
};
}