25 lines
574 B
Nix
25 lines
574 B
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
|
inputs.nixos-hardware.nixosModules.common-gpu-intel
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
|
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
|
|
../workstation
|
|
];
|
|
networking.hostName = "dragon";
|
|
variables.swayScale = "1.0";
|
|
|
|
roles = {
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
};
|
|
wm = {sway.enable = true;};
|
|
}
|