16 lines
328 B
Nix
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;
|
|
}
|