29 lines
580 B
Nix
29 lines
580 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|