Compare commits

..

4 commits

Author SHA1 Message Date
Laureηt 84041ab5a3
💡 wireguard simpler comment 2023-04-23 20:20:12 +02:00
Laureηt db2003e4e6
atuin server 2023-04-23 20:13:39 +02:00
Laureηt ca17686729
💡 add comment to jmtpfs package 2023-04-23 19:30:21 +02:00
Laureηt ac3b869e95
remove dconf package 2023-04-23 19:29:57 +02:00
5 changed files with 23 additions and 4 deletions

View file

@ -0,0 +1,19 @@
{ ... }: {
services.atuin = {
enable = true;
openRegistration = false;
maxHistoryLength = 1000000000;
};
services.nginx = {
virtualHosts = {
"atuin.fainsin.bzh" = {
forceSSL = true;
enableACME = true;
locations."/" = { proxyPass = "http://127.0.0.1:8888"; };
};
};
};
}

View file

@ -1 +1 @@
{ imports = [ ./gitea ./blocky ./wireguard ]; }
{ imports = [ ./atuin ./blocky ./gitea ./wireguard ]; }

View file

@ -2,7 +2,7 @@
networking = {
firewall = {
allowedUDPPorts = [
5553 # default wireguard port
5553 # wireguard
];
};

View file

@ -4,14 +4,13 @@
home.packages = with pkgs; [
baobab # disk utils
borgbackup # backup
dconf
duf # replacement for df
element-desktop # matrix client
feh # image viewer
gnome.nautilus # file explorer
grim # screenshot utils
htop # replacement for top
jmtpfs
jmtpfs # for Android MTP
keepassxc # password manager
libreoffice-fresh # office suite
logseq # second brain journalling

View file

@ -46,6 +46,7 @@ in {
programs.atuin = {
enable = true;
enableZshIntegration = true;
settings = { sync_address = "https://atuin.fainsin.bzh"; };
};
programs.zsh = {
enable = true;