The initial step of grouping lemp11 and t490 configuration, inspired by https://github.com/mkellyxp/nixbook.
40 lines
583 B
Nix
40 lines
583 B
Nix
{
|
|
imports = [
|
|
../common
|
|
|
|
./hardware-configuration.nix
|
|
./hardware.nix
|
|
./services
|
|
|
|
../../users/luke.nix
|
|
../../users/opdavies.nix
|
|
];
|
|
|
|
core = {
|
|
bluetooth.enable = true;
|
|
zram.enable = true;
|
|
};
|
|
|
|
desktop.dconf.enable = true;
|
|
|
|
nixpad.enable = true;
|
|
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
systemd.extraConfig = ''
|
|
DefaultTimeoutStopSec=10s
|
|
'';
|
|
|
|
networking.networkmanager.enable = true;
|
|
}
|