32 lines
745 B
Nix
32 lines
745 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
libs,
|
|
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 = "pocket2";
|
|
variables.address = "192.168.1.12";
|
|
variables.swayScale = "1.7";
|
|
|
|
roles = {
|
|
citrix.enable = false;
|
|
zoom.enable = false;
|
|
gui.enable = true;
|
|
kmscon.enable = true;
|
|
games.enable = false;
|
|
auto-cpufreq.enable = false;
|
|
gnome-calendar.enable = true;
|
|
};
|
|
wm = {sway.enable = true;};
|
|
}
|