35 lines
641 B
Nix
35 lines
641 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
# ../disko/mmcblk.nix
|
|
../workstation
|
|
];
|
|
networking.hostName = "NAME";
|
|
variables.address = "0.0.0.1";
|
|
variables.swayScale = "1.0";
|
|
|
|
roles = {
|
|
citrix.enable = false;
|
|
zoom.enable = false;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
kvm.enable = false;
|
|
games.enable = false;
|
|
auto-cpufreq.enable = true;
|
|
wine.enable = false;
|
|
tlp.enable = false;
|
|
gnome-calendar.enable = false;
|
|
};
|
|
primary.enable = false;
|
|
wm = {
|
|
sway.enable = true;
|
|
};
|
|
}
|