29 lines
555 B
Nix
29 lines
555 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../system/system.nix
|
|
../meta.nix
|
|
];
|
|
|
|
config = {
|
|
networking.hostName = "thonkpad"; # Define your hostname.
|
|
res = "1366x768";
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
backupFileExtension = "hm-backup";
|
|
users.synchronous.imports = [../../home/home.nix];
|
|
};
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.grub.enable = false;
|
|
};
|
|
}
|