re-enable pocket2 and updates

This commit is contained in:
Don Harper 2025-11-09 16:41:47 -06:00
parent 82e9873969
commit 9096f2e7c6
2 changed files with 20 additions and 4 deletions

View file

@ -55,7 +55,7 @@
fred = import ./hosts/fred/colmena.nix; # acer server
loki = import ./hosts/loki/colmena.nix; # Dell XPS 13
# pi1 = import ./hosts/pi1/colmena.nix;
# pocket2 = import ./hosts/pocket2/colmena.nix;
pocket2 = import ./hosts/pocket2/colmena.nix;
smaug = import ./hosts/smaug/colmena.nix; # Thinkpad x260
w1 = import ./hosts/w1/colmena.nix; # Hetzner VPS
# w2 = import ./hosts/w2/colmena.nix;

View file

@ -1,4 +1,11 @@
{ inputs, config, pkgs, ... }: {
{
inputs,
outputs,
libs,
config,
pkgs,
...
}: {
imports = [
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.common-cpu-intel
@ -8,8 +15,17 @@
../workstation
];
networking.hostName = "pocket2";
variables.address = "192.168.1.12";
variables.swayScale = "1.7";
roles = { gui.enable = true; };
wm = { sway.enable = true; };
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;};
}