Skip to content

Commit c788529

Browse files
committed
add thudnerbird client
1 parent d0e3c03 commit c788529

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

home/desktop/default.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
{
44
imports = [
55
../default.nix
6-
6+
77
./app.nix
88
./dconf.nix
99
./development.nix
1010
./editors.nix
1111
./gaming.nix
1212
./gtk.nix
1313
./hyprland.nix
14+
./mail.nix
1415
./terminal.nix
1516
./xdg.nix
1617
];

home/desktop/development.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
# java-related
3838
pkgs.zulu21
39+
pkgs.gradle_7
3940

4041
# scala-related
4142
pkgs-unstable.scala
@@ -51,6 +52,8 @@
5152
pkgs.uv
5253
pkgs.python312Packages.grip
5354

55+
pkgs.socat
56+
5457
# # rust-related
5558
# pkgs.rustc
5659
# pkgs.clippy

home/desktop/mail.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{ ... }:
2+
3+
{
4+
programs.thunderbird = {
5+
enable = true;
6+
profiles.daniel = {
7+
isDefault = true;
8+
};
9+
};
10+
}

0 commit comments

Comments
 (0)