15 lines
308 B
Nix
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; };
|
|
}
|