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

with lib; with lib.${namespace}; {
  cxl = {
    desktop.background = "shinobu.png";

    suites = {
      common.enable = true;
      desktop.enable = true;
      dev.enable = true;
      media.enable = true;
      gaming.enable = true;
      misc.enable = true;
    };

    apps.discord.enable = true;
    apps.prismlauncher.extra.rusherhack.enable = true;

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

  home.stateVersion = "23.11";
}