mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
removed notmuch
This commit is contained in:
parent
c038fa3228
commit
11b1eb654d
24
flake.lock
24
flake.lock
|
@ -23,11 +23,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1684061181,
|
"lastModified": 1684157850,
|
||||||
"narHash": "sha256-EJpZ+Drpt3aHpowddpsQFBWsqLSJHyP6dnremTVMdWw=",
|
"narHash": "sha256-xGHTCgvAxO5CgAL6IAgE/VGRX2wob2Y+DPyqpXJ32oQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "e4272987f785a8848205263abb4911b922c21e1b",
|
"rev": "c0deab0effd576e70343cb5df0c64428e0e0d010",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -44,11 +44,11 @@
|
||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1684068895,
|
"lastModified": 1684167111,
|
||||||
"narHash": "sha256-1oSX5LQmSl/lcpPdM+NG2TlLynFmVbubNeIoSF1Mmv0=",
|
"narHash": "sha256-0JKyr8WOpcXJP5XaLnUSI7e1d7N5Rcpyf72+N4ZEtjo=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "Hyprland",
|
"repo": "Hyprland",
|
||||||
"rev": "7c207243e41b5b4f35d790767ad2e21eba1b7a0b",
|
"rev": "5b84b0fb445bc4485510bba516c84141aaeafd04",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -80,11 +80,11 @@
|
||||||
},
|
},
|
||||||
"impermanence": {
|
"impermanence": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1682268411,
|
"lastModified": 1684144492,
|
||||||
"narHash": "sha256-ICDKQ7tournRVtfM8C2II0qHiOZOH1b3dXVOCsgr11o=",
|
"narHash": "sha256-5TBG9kZGdKrZGHdyjLA04ODSzhx1Bx/vwMxfRgWF+JU=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "impermanence",
|
"repo": "impermanence",
|
||||||
"rev": "df1692e2d9f1efc4300b1ea9201831730e0b817d",
|
"rev": "ec1a8e70d61261f9ada30f4e450ea7230d9efb62",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -134,11 +134,11 @@
|
||||||
},
|
},
|
||||||
"nixos-hardware": {
|
"nixos-hardware": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1683965003,
|
"lastModified": 1684169666,
|
||||||
"narHash": "sha256-DrzSdOnLv/yFBvS2FqmwBA2xIbN/Lny/WlxHyoLR9zE=",
|
"narHash": "sha256-N5jrykeSxLVgvm3Dd3hZ38/XwM/jU+dltqlXgrGlYxk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "81cd886719e10d4822b2a6caa96e95d56cc915ef",
|
"rev": "71ce85372a614d418d5e303dd5702a79d1545c04",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -15,7 +15,6 @@
|
||||||
loader = {
|
loader = {
|
||||||
grub = {
|
grub = {
|
||||||
enable = true;
|
enable = true;
|
||||||
version = 2;
|
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
efiInstallAsRemovable = true;
|
efiInstallAsRemovable = true;
|
||||||
device = "/dev/sda";
|
device = "/dev/sda";
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, lib, ant, jdk, ... }:
|
{ stdenv, fetchFromGitHub, lib, ant, jdk11, ... }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "jmri";
|
pname = "jmri";
|
||||||
version = "5.3.5";
|
version = "5.3.5";
|
||||||
|
@ -12,9 +12,12 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
ant
|
ant
|
||||||
jdk
|
jdk11
|
||||||
];
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
jdk11
|
||||||
|
];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
ant package-linux
|
ant package-linux
|
||||||
|
|
|
@ -36,7 +36,6 @@ in
|
||||||
};
|
};
|
||||||
mbsync.enable = true;
|
mbsync.enable = true;
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
notmuch.enable = true;
|
|
||||||
};
|
};
|
||||||
accounts.email.accounts = {
|
accounts.email.accounts = {
|
||||||
"rouven@rfive.de" = rec {
|
"rouven@rfive.de" = rec {
|
||||||
|
@ -157,7 +156,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
notmuch.enable = true;
|
|
||||||
neomutt = let c = mbsync.groups.tud.channels; in
|
neomutt = let c = mbsync.groups.tud.channels; in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -225,19 +223,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
# notmuch.enable = true;
|
|
||||||
notmuch = {
|
|
||||||
enable = true;
|
|
||||||
neomutt = {
|
|
||||||
enable = true;
|
|
||||||
virtualMailboxes = [
|
|
||||||
{
|
|
||||||
name = "IFSR-Unread";
|
|
||||||
query = "folder:iFSR/Inbox tag:unread";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
neomutt = let c = mbsync.groups.ifsr.channels; in
|
neomutt = let c = mbsync.groups.ifsr.channels; in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -296,19 +281,6 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
msmtp.enable = true;
|
msmtp.enable = true;
|
||||||
# notmuch.enable = true;
|
|
||||||
notmuch = {
|
|
||||||
enable = true;
|
|
||||||
neomutt = {
|
|
||||||
enable = true;
|
|
||||||
virtualMailboxes = [
|
|
||||||
{
|
|
||||||
name = "gmail-Unread";
|
|
||||||
query = "tag:unread";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
neomutt = let c = mbsync.groups.gmail.channels; in
|
neomutt = let c = mbsync.groups.gmail.channels; in
|
||||||
{
|
{
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
gdb
|
gdb
|
||||||
lldb
|
lldb
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
nil
|
rnix-lsp
|
||||||
(python3.withPackages (ps: with ps; [
|
(python3.withPackages (ps: with ps; [
|
||||||
pyls-isort
|
pyls-isort
|
||||||
pylsp-mypy
|
pylsp-mypy
|
||||||
|
@ -29,6 +29,13 @@
|
||||||
"ui.background" = "{}";
|
"ui.background" = "{}";
|
||||||
"ui.virtual.inlay-hint" = { fg = "#666666"; };
|
"ui.virtual.inlay-hint" = { fg = "#666666"; };
|
||||||
};
|
};
|
||||||
|
languages = [
|
||||||
|
{
|
||||||
|
name = "nix";
|
||||||
|
auto-format = true;
|
||||||
|
language-server.command = "rnix-lsp";
|
||||||
|
}
|
||||||
|
];
|
||||||
settings = {
|
settings = {
|
||||||
theme = "dracula-transparent";
|
theme = "dracula-transparent";
|
||||||
editor = {
|
editor = {
|
||||||
|
|
|
@ -1,17 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# temp here for testing
|
|
||||||
thunderbird
|
|
||||||
|
|
||||||
# essentials
|
# essentials
|
||||||
wpa_supplicant_gui # manage wifi
|
wpa_supplicant_gui # manage wifi
|
||||||
pcmanfm # rock solid file manager
|
pcmanfm # rock solid file manager
|
||||||
xdg-utils # used for xdg-open
|
xdg-utils # used for xdg-open
|
||||||
snapper-gui
|
snapper-gui
|
||||||
# comma # run any command
|
|
||||||
kleopatra
|
kleopatra
|
||||||
python310Packages.pyhanko
|
|
||||||
|
|
||||||
# graphics
|
# graphics
|
||||||
evince # pdf viewer
|
evince # pdf viewer
|
||||||
|
@ -29,8 +25,6 @@
|
||||||
|
|
||||||
# internet
|
# internet
|
||||||
google-chrome
|
google-chrome
|
||||||
nextcloud-client
|
|
||||||
transmission-gtk
|
|
||||||
|
|
||||||
# messaging
|
# messaging
|
||||||
discord
|
discord
|
||||||
|
@ -46,23 +40,18 @@
|
||||||
yubikey-manager-qt
|
yubikey-manager-qt
|
||||||
# yubioath-flutter # broken, TODO fix
|
# yubioath-flutter # broken, TODO fix
|
||||||
bitwarden
|
bitwarden
|
||||||
bitwarden-cli
|
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
btop
|
|
||||||
neofetch # obligatory
|
neofetch # obligatory
|
||||||
virt-manager
|
virt-manager
|
||||||
ventoy
|
ventoy
|
||||||
xsane # scanning
|
|
||||||
jetbrains.idea-community
|
jetbrains.idea-community
|
||||||
nix-output-monitor
|
nix-output-monitor
|
||||||
|
|
||||||
ripgrep # better grep
|
|
||||||
duf # better df
|
duf # better df
|
||||||
croc # send files anywhere
|
croc # send files anywhere
|
||||||
|
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
# password
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# libs
|
# libs
|
||||||
|
@ -74,7 +63,6 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.obs-studio.enable = true;
|
programs.obs-studio.enable = true;
|
||||||
programs.nix-index.enable = true;
|
|
||||||
|
|
||||||
xdg.mimeApps = {
|
xdg.mimeApps = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -97,4 +85,3 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue