29 lines
569 B
Nix
29 lines
569 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.google-pixelbook
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
# ../disko/mmcblk.nix
|
|
../workstation
|
|
];
|
|
networking.hostName = "book";
|
|
variables.address = "100.72.121.75";
|
|
variables.swayScale = "1.5";
|
|
|
|
roles = {
|
|
citrix.enable = false;
|
|
zoom.enable = false;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm = {sway.enable = true;};
|
|
}
|