21 lines
572 B
Nix
21 lines
572 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../templates/workstation.nix
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x260
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
|
inputs.nixos-hardware.nixosModules.common-pc-ssd
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "smaug";
|
|
variables.address = "100.72.248.81";
|
|
variables.swayScale = "0.75";
|
|
|
|
roles = {
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm.sway.enable = true;
|
|
}
|