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