NixOS-Configs/hosts/loki/default.nix
2025-09-18 21:56:27 -05:00

24 lines
628 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
inputs.nixos-hardware.nixosModules.framework-amd-ai-300-series
./hardware-configuration.nix
# ../disko/nvme.nix
../workstation
];
networking.hostName = "loki";
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
variables.address = "100.72.0.1";
variables.swayScale = "1.2";
roles = {
citrix.enable = true;
zoom.enable = true;
gui.enable = true;
kmscon.enable = true;
games.enable = true;
auto-cpufreq.enable = true;
gnome-calendar.enable = true;
};
primary.enable = true;
wm = { sway.enable = true; };
}