We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0e3c03 commit c788529Copy full SHA for c788529
home/desktop/default.nix
@@ -3,14 +3,15 @@
3
{
4
imports = [
5
../default.nix
6
-
+
7
./app.nix
8
./dconf.nix
9
./development.nix
10
./editors.nix
11
./gaming.nix
12
./gtk.nix
13
./hyprland.nix
14
+ ./mail.nix
15
./terminal.nix
16
./xdg.nix
17
];
home/desktop/development.nix
@@ -36,6 +36,7 @@
36
37
# java-related
38
pkgs.zulu21
39
+ pkgs.gradle_7
40
41
# scala-related
42
pkgs-unstable.scala
@@ -51,6 +52,8 @@
51
52
pkgs.uv
53
pkgs.python312Packages.grip
54
55
+ pkgs.socat
56
57
# # rust-related
58
# pkgs.rustc
59
# pkgs.clippy
home/desktop/mail.nix
@@ -0,0 +1,10 @@
1
+{ ... }:
2
+{
+ programs.thunderbird = {
+ enable = true;
+ profiles.daniel = {
+ isDefault = true;
+ };
+}
0 commit comments