NixOS-Configs/hosts/eve/default.nix
2025-09-18 21:56:27 -05:00

18 lines
419 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
inputs.nixos-hardware.nixosModules.google-pixelbook
./hardware-configuration.nix
# ../disko/mmcblk.nix
../workstation
];
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; };
}