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

33 lines
502 B
Nix
Raw Normal View History

{
config,
pkgs,
inputs,
...
}:
{
imports = [
2024-09-20 23:15:30 +02:00
# Include the results of the hardware scan.
./hardware-configuration.nix
];
2024-09-16 22:04:47 +02:00
2024-09-20 23:15:30 +02:00
networking.hostName = "work-ntb"; # Define your hostname.
# My own modules configuration
krop = {
ide = {
enable = true;
install-pycharm = true;
2024-09-19 17:30:03 +02:00
};
2024-10-18 16:17:05 +02:00
python.install-additional = true;
};
2024-09-16 22:04:47 +02:00
home-manager = {
extraSpecialArgs = {
inherit inputs;
2024-09-16 22:04:47 +02:00
};
users = {
2024-09-26 07:56:57 +02:00
"krop" = import ../../users/krop;
};
};
2024-09-16 22:04:47 +02:00
}