summaryrefslogtreecommitdiffstats
path: root/templates/desktop/host.nix
diff options
context:
space:
mode:
Diffstat (limited to 'templates/desktop/host.nix')
-rw-r--r--templates/desktop/host.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/desktop/host.nix b/templates/desktop/host.nix
new file mode 100644
index 0000000..e775db8
--- /dev/null
+++ b/templates/desktop/host.nix
@@ -0,0 +1,11 @@
1{ config, ... }:
2
3{
4 networking.hostName = "myHostname";
5
6 theme.colors = with config.theme.colors; {
7 dominantName = "green";
8 dominant = neutralGreen;
9 dimDominant = fadedGreen;
10 };
11}