18 lines
612 B
Nix
18 lines
612 B
Nix
# Lyra's personal home extras, imported on her hosts (not the work box). Keeps
|
|||
|
|
# personal data out of the shared home/ modules. See README "Users".
|
||
|
|
{ pkgs, lib, ... }:
|
||
|
|
{
|
||
|
|
# Personal ssh host shortcut.
|
||
|
|
programs.ssh.settings."dockerpi.inf.cbg.emmaisvery.gay" = {
|
||
|
|
User = "emmathorpe";
|
||
|
|
};
|
||
|
|
|
||
|
|
# Night-light location for gammastep (the service itself is enabled by
|
||
|
|
# home/sway.nix on graphical hosts). Linux-guarded so Darwin, which imports
|
||
|
|
# this module but has no gammastep, skips it.
|
||
|
|
services.gammastep = lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||
|
|
latitude = 51.5;
|
||
|
|
longitude = -0.13;
|
||
|
|
};
|
||
|
|
}
|