43 lines
718 B
Nix
43 lines
718 B
Nix
{ inputs, config, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../common/common.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "desktop1";
|
|
|
|
networking.bridges.br0.interfaces = [ ];
|
|
networking.interfaces.br0.ipv4.addresses = [
|
|
{
|
|
address = "10.0.0.1";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
|
|
smayzy = {
|
|
desktop.enable = true;
|
|
nvidia.enable = true;
|
|
virt.enable = true;
|
|
hyprland.enable = true;
|
|
kde.enable = true;
|
|
};
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = {
|
|
inherit inputs;
|
|
smayzy = config.smayzy;
|
|
};
|
|
users = {
|
|
smayzy = import ./home.nix;
|
|
};
|
|
backupFileExtension = "backup";
|
|
};
|
|
|
|
programs.adb.enable = true;
|
|
|
|
system.stateVersion = "24.11";
|
|
|
|
}
|