21 lines
514 B
Nix
21 lines
514 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../templates/workstation.nix
|
|
inputs.nixos-hardware.nixosModules.google-pixelbook
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# Host-specific configuration
|
|
networking.hostName = "book";
|
|
variables.address = "100.72.121.75";
|
|
variables.swayScale = "1.5";
|
|
|
|
# Enable roles for this host
|
|
roles = {
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm.sway.enable = true;
|
|
}
|