29 lines
629 B
Nix
29 lines
629 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
|
|
inputs.sops-nix.nixosModules.sops
|
|
./hardware-configuration.nix
|
|
# ../disko/sda.nix
|
|
../workstation
|
|
];
|
|
networking.hostName = "smaug";
|
|
variables.address = "100.72.248.81";
|
|
variables.swayScale = "0.75";
|
|
|
|
roles = {
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
auto-cpufreq.enable = true;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm = {sway.enable = true;};
|
|
}
|