re-enable pocket2 and updates
This commit is contained in:
parent
82e9873969
commit
9096f2e7c6
2 changed files with 20 additions and 4 deletions
|
|
@ -55,7 +55,7 @@
|
||||||
fred = import ./hosts/fred/colmena.nix; # acer server
|
fred = import ./hosts/fred/colmena.nix; # acer server
|
||||||
loki = import ./hosts/loki/colmena.nix; # Dell XPS 13
|
loki = import ./hosts/loki/colmena.nix; # Dell XPS 13
|
||||||
# pi1 = import ./hosts/pi1/colmena.nix;
|
# 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
|
smaug = import ./hosts/smaug/colmena.nix; # Thinkpad x260
|
||||||
w1 = import ./hosts/w1/colmena.nix; # Hetzner VPS
|
w1 = import ./hosts/w1/colmena.nix; # Hetzner VPS
|
||||||
# w2 = import ./hosts/w2/colmena.nix;
|
# w2 = import ./hosts/w2/colmena.nix;
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,11 @@
|
||||||
{ inputs, config, pkgs, ... }: {
|
{
|
||||||
|
inputs,
|
||||||
|
outputs,
|
||||||
|
libs,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
||||||
|
|
@ -8,8 +15,17 @@
|
||||||
../workstation
|
../workstation
|
||||||
];
|
];
|
||||||
networking.hostName = "pocket2";
|
networking.hostName = "pocket2";
|
||||||
|
variables.address = "192.168.1.12";
|
||||||
variables.swayScale = "1.7";
|
variables.swayScale = "1.7";
|
||||||
|
|
||||||
roles = { gui.enable = true; };
|
roles = {
|
||||||
wm = { sway.enable = true; };
|
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;};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue