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

33 lines
434 B
Nix
Raw Normal View History

{
config,
pkgs,
inputs,
...
}:
{
imports = [
(import ../base {
inherit config pkgs;
hostname = "work-ntb";
})
];
2024-09-16 22:04:47 +02:00
# My own modules configuration
krop = {
ide = {
enable = true;
install-pycharm = true;
2024-09-19 17:30:03 +02:00
};
python.install-older = true;
};
2024-09-16 22:04:47 +02:00
home-manager = {
extraSpecialArgs = {
inherit inputs;
2024-09-16 22:04:47 +02:00
};
users = {
"krop" = import ./home.nix;
};
};
2024-09-16 22:04:47 +02:00
}