aboutsummaryrefslogtreecommitdiff
path: root/homes/x86_64-linux/c
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-04-14 19:01:38 -0700
committerCaroline Larimore <caroline@larimo.re>2025-04-14 19:01:38 -0700
commite8077fde966e051fc449fffcfa061c7f7edc47b0 (patch)
treea0b1ce60f2718f90c64e924ed8df8d5d4f0d2289 /homes/x86_64-linux/c
parente486d896215e7ef04438809952bc7317512d5765 (diff)
migration: finalize
Diffstat (limited to 'homes/x86_64-linux/c')
-rw-r--r--homes/x86_64-linux/c/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/homes/x86_64-linux/c/default.nix b/homes/x86_64-linux/c/default.nix
new file mode 100644
index 0000000..cdeb8cb
--- /dev/null
+++ b/homes/x86_64-linux/c/default.nix
@@ -0,0 +1,37 @@
+{ 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;
+ 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";
+ key = "314C14641E707B68";
+ };
+ };
+
+ home.stateVersion = "23.11";
+}