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

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

    desktop.background = "shinobu.png";

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

  home.stateVersion = "23.11";
}