aboutsummaryrefslogtreecommitdiff
path: root/snowfall/homes/x86_64-linux/c/default.nix
blob: f24778e46eba7be49bcaed252e51e045433689da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, namespace, ... }:

with lib; with lib.${namespace}; {
  cxl = {
    suites = {
      common.enable = true;
      desktop.enable = true;
    };

    desktop.background = "shinobu.png";

    tools.git = {
      name = "Caroline Larimore";
      email = "caroline@larimo.re";
      key = "314C14641E707B68";
    };
  };

  home.stateVersion = "23.11";
}