nix-config/hosts/lenar/default.nix
2024-09-22 23:53:50 +02:00

34 lines
540 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.disko.nixosModules.disko
./disko.nix
];
networking.hostName = "lenar"; # Define your hostname.
# 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;
};
};
}