27 lines
665 B
Nix
27 lines
665 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../templates/workstation.nix
|
|
inputs.nixos-hardware.nixosModules.framework-amd-ai-300-series
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
# Host-specific configuration
|
|
networking.hostName = "loki";
|
|
variables.address = "100.72.0.1";
|
|
variables.swayScale = "1.2";
|
|
|
|
# Enable roles for this host
|
|
roles = {
|
|
citrix.enable = true;
|
|
zoom.enable = true;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
kvm.enable = false;
|
|
games.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm.sway.enable = true;
|
|
primary.enable = false;
|
|
lmstudio.enable = true;
|
|
ollama.enable = true;
|
|
}
|