28 lines
685 B
Nix
28 lines
685 B
Nix
{ inputs, config, pkgs, ... }: {
|
|
imports = [
|
|
./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
|
|
../workstation/kvm.nix
|
|
../workstation/games
|
|
../wm
|
|
../../home/work
|
|
];
|
|
networking.hostName = "pocket2";
|
|
|
|
roles = {
|
|
citrix.enable = false;
|
|
zoom.enable = false;
|
|
gui.enable = true;
|
|
kvm.enable = false;
|
|
games.enable = false;
|
|
};
|
|
wm = {
|
|
sway.enable = true;
|
|
kde.enable = false;
|
|
# cosmic.enable = false;
|
|
};
|
|
}
|