1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

chore: re-add invokeai substituter

This commit is contained in:
oddlama 2024-06-01 00:56:01 +02:00
parent 4b7a862bfb
commit d5a886a6dd
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 7 additions and 11 deletions

View file

@ -58,6 +58,9 @@
popups = 20; popups = 20;
}; };
nix.settings.trusted-substituters = ["https://ai.cachix.org"];
nix.settings.trusted-public-keys = ["ai.cachix.org-1:N9dzRK+alWwoKXQlnn0H6aUx0lU/mspIoz8hMvGvbbc="];
#meta.promtail = { #meta.promtail = {
# enable = true; # enable = true;
# proxy = "sentinel"; # proxy = "sentinel";

View file

@ -37,41 +37,34 @@
pkgs.xdragon pkgs.xdragon
pkgs.yt-dlp pkgs.yt-dlp
pkgs.zathura pkgs.zathura
pkgs.gpu-screen-recorder
pkgs.gpu-screen-recorder-gtk
]; ];
# TODO yubikey pinentry is curses but should be graphical
# TODO test different pinentrys (pinentry gtk?)
# TODO wrap thunderbird bin and set LC_ALL=de_DE.UTF-8 because thunderbird uses wrong date and time formatting with C.UTF-8 # TODO wrap thunderbird bin and set LC_ALL=de_DE.UTF-8 because thunderbird uses wrong date and time formatting with C.UTF-8
# TODO make screenshot copy work even if notification fails (set -e does its thing here) # TODO make screenshot copy work even if notification fails (set -e does its thing here)
# TODO pavucontrol shortcut or bar button # TODO pavucontrol shortcut or bar button
# TODO secureboot -> use pam yubikey login
# TODO keyboard stays lit on poweroff -> add systemd service to disable it on shutdown # TODO keyboard stays lit on poweroff -> add systemd service to disable it on shutdown
# TODO on neogit close do neotree update # TODO on neogit close do neotree update
# TODO kitty terminfo missing with ssh root@localhost
# TODO nix repl cltr+del doesnt work
# TODO wrap neovim for kitty hist
# TODO neovim gitsigns toggle_deleted keybind # TODO neovim gitsigns toggle_deleted keybind
# TODO neovim gitsigns stage hunk shortcut # TODO neovim gitsigns stage hunk shortcut
# TODO neovim directtly opening file has different syntax # TODO neovim directtly opening file has different syntax
# TODO neovim reopening file should continue at the previous position # TODO neovim reopening file should continue at the previous position
# TODO thunderbird doesn't use passwords from password command # TODO thunderbird doesn't use passwords from password command
# TODO rotating wallpaper
# TODO accounts.concats accounts.calendar # TODO accounts.concats accounts.calendar
# TODO agenix rekey edit secret should create temp files with same extension
# TODO mod+f1-4 for left monitor? # TODO mod+f1-4 for left monitor?
# TODO autostart signal, firefox (both windows), etc.
# TODO repo secrets caches in /tmp which is removed each reboot and could be improved
# TODO sway shortcuts # TODO sway shortcuts
# TODO VP9 hardware video decoding blocklisted # TODO VP9 hardware video decoding blocklisted
# TODO gpg switch to sk
persistence."/state".directories = [ persistence."/state".directories = [
"Downloads" # config.xdg.userDirs.download (infinite recursion) "Downloads" # config.xdg.userDirs.download (infinite recursion)
".local/share/invokeai"
]; ];
persistence."/persist".directories = [ persistence."/persist".directories = [
"projects" "projects"
"Pictures" # config.xdg.userDirs.pictures (infinite recursion) "Pictures" # config.xdg.userDirs.pictures (infinite recursion)
"Videos" # This is where I store clips from gpu-screen-recorder-gtk
".config/obsidian" ".config/obsidian"
]; ];
}; };