NixOS-Configs/hosts/ace/default.nix
2025-09-04 14:20:55 -05:00

24 lines
326 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;
};
}