19 lines
439 B
Nix
19 lines
439 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../templates/workstation.nix
|
|
inputs.nixos-hardware.nixosModules.google-pixelbook
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "eve";
|
|
variables.swayScale = "1.5";
|
|
|
|
roles = {
|
|
zoom.enable = true;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
};
|
|
wm.sway.enable = true;
|
|
}
|