32 lines
488 B
Nix
32 lines
488 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.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;
|
|
};
|
|
};
|
|
}
|