blob: a0f1c105aedc70499d18962dbce60a616b85d5e2 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{ config, lib, namespace, ... }:
with lib; with lib.${namespace}; let
themes = config.${namespace}.desktop.themes;
in {
cxl = {
desktop = {
background = "shinobu.png";
theme = themes."gruvbox";
};
suites = {
common.enable = true;
desktop.enable = true;
dev.enable = true;
media.enable = true;
gaming.enable = true;
misc.enable = true;
};
apps = {
discord.enable = true;
cinny.enable = true;
gimp.enable = true;
qbittorrent.enable = true;
nicotine.enable = true;
anki.enable = true;
obsidian.enable = true;
prismlauncher.extra.rusherhack.enable = true;
};
tools.wine.enable = true;
tools.git = {
name = "Caroline Larimore";
email = "caroline@larimo.re";
};
};
home.stateVersion = "23.11";
}
|