add pvv terminal machine

This commit is contained in:
Daniel Lovbrotte Olsen 2022-04-24 00:26:26 +02:00
parent cbd5ca59ee
commit 1f5c793d77
1 changed files with 28 additions and 0 deletions

28
machines/pvv-terminal.nix Normal file
View File

@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
{
imports = [ ../profiles ];
machine = {
name = "PVV Terminal";
eth = null;
wlan = null;
};
profiles.base.enable = true;
profiles.gui.enable = true;
profiles.non-nixos.enable = true;
profiles.xsession.enable = true;
profiles.zsh.enable = true;
services.gammastep = {
enable = true;
dawnTime = "7:00-8:15";
duskTime = "21:30-22:30";
};
profiles.games.enable = false;
programs.home-manager = {
enable = true;
path = "https://github.com/rycee/home-manager/archive/release-21.11.tar.gz";
};
}