2024-09-22 21:36:02 +02:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
2024-09-22 23:53:50 +02:00
|
|
|
inputs.disko.nixosModules.disko
|
|
|
|
./disko.nix
|
2024-09-22 21:36:02 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|