NixOS-Configs/hosts/smaug/default.nix
2025-08-07 17:13:37 -05:00

30 lines
755 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x260
inputs.nixos-hardware.nixosModules.common-pc-laptop
inputs.nixos-hardware.nixosModules.common-pc-ssd
./hardware-configuration.nix
# ../disko/sda.nix
../workstation
];
networking.hostName = "smaug";
variables.address = "100.72.224.76";
variables.swayScale = "0.75";
roles = {
citrix.enable = false;
zoom.enable = true;
gui.enable = true;
kmscon.enable = true;
kvm.enable = true;
games.enable = true;
wine.enable = false;
tlp.enable = true;
gnome-calendar.enable = true;
};
wm = {
sway.enable = true;
kde.enable = false;
# cosmic.enable = false;
};
}