summaryrefslogtreecommitdiffstats
path: root/templates/desktop/host.nix
blob: e775db8e1732cfc6f70b6c5b8f44c78bc6787dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, ... }:

{
  networking.hostName = "myHostname";

  theme.colors = with config.theme.colors; {
    dominantName = "green";
    dominant = neutralGreen;
    dimDominant = fadedGreen;
  };
}