NixOS-Configs/hosts/ace/default.nix
2026-05-20 08:04:16 -05:00

16 lines
328 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
../templates/workstation.nix
inputs.sops-nix.nixosModules.sops
./hardware-configuration.nix
];
networking.hostName = "ace";
variables.swayScale = "0.75";
roles = {
gui.enable = true;
kmscon.enable = true;
};
wm.sway.enable = true;
}