33 lines
671 B
Nix
33 lines
671 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.framework-amd-ai-300-series
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
# ../disko/nvme.nix
|
|
../workstation
|
|
];
|
|
networking.hostName = "loki";
|
|
variables.address = "100.72.0.1";
|
|
variables.swayScale = "1.2";
|
|
|
|
roles = {
|
|
citrix.enable = true;
|
|
zoom.enable = true;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
kvm.enable = true;
|
|
games.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
primary.enable = false;
|
|
ollama.enable = true;
|
|
wm = {sway.enable = true;};
|
|
}
|