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

15 lines
308 B
Nix

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