├── .envrc ├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── common ├── cachix.nix ├── cachix │ ├── fossar.nix │ └── tojnar-cz.nix ├── configs │ └── keepassxc │ │ ├── default.nix │ │ ├── keepassxc.ini │ │ └── nmh.json ├── data │ ├── config.fish │ ├── keys.nix │ └── users.nix ├── gnupgdir.py ├── home-profiles │ ├── list.nix │ ├── ripgrep.nix │ ├── sublime │ │ ├── Declarative │ │ │ ├── Default.sublime-keymap │ │ │ ├── Macros │ │ │ │ ├── delete_subword.sublime-macro │ │ │ │ └── delete_subword_forward.sublime-macro │ │ │ ├── PackageSettings │ │ │ │ ├── LSP-rust-analyzer.sublime-settings │ │ │ │ ├── LSP-typescript.sublime-settings │ │ │ │ └── LSP.sublime-settings │ │ │ ├── Preferences.sublime-settings │ │ │ └── Snippets │ │ │ │ └── Rust │ │ │ │ └── tests-module.sublime-snippet │ │ ├── MergeDeclarative │ │ │ └── Default.sublime-keymap │ │ └── default.nix │ └── xcompose │ │ ├── XCompose │ │ └── default.nix ├── modules │ ├── list.nix │ ├── postgres-upgrade.nix │ └── postgres.nix ├── overlays │ ├── debugging │ │ └── default.nix │ ├── default.nix │ └── wallpapers.nix ├── profiles │ ├── core.nix │ ├── environment.nix │ ├── fonts.nix │ ├── jtojnar-firefox.nix │ ├── list.nix │ └── virt.nix └── ssdp.nix ├── default.nix ├── flake.lock ├── flake.nix ├── hosts ├── azazel │ ├── README.md │ ├── configuration.nix │ ├── fan-club-penguin.cz │ │ ├── archiv │ │ │ └── default.nix │ │ ├── beta │ │ │ └── default.nix │ │ ├── cdn │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── forum │ │ │ └── default.nix │ │ ├── jitsucards │ │ │ └── default.nix │ │ ├── kafu │ │ │ └── default.nix │ │ ├── lisured │ │ │ └── default.nix │ │ ├── mediacache │ │ │ └── default.nix │ │ ├── pechar │ │ │ └── default.nix │ │ ├── pengu │ │ │ └── default.nix │ │ ├── preklady │ │ │ └── default.nix │ │ ├── provider │ │ │ └── default.nix │ │ ├── saman │ │ │ └── default.nix │ │ ├── shout │ │ │ └── default.nix │ │ ├── upload │ │ │ └── default.nix │ │ └── www │ │ │ └── default.nix │ ├── krk-litvinov.cz │ │ ├── agenda │ │ │ └── default.nix │ │ ├── bloudeni │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── entries │ │ │ └── default.nix │ │ ├── hrob-2020 │ │ │ └── default.nix │ │ ├── hrob-2022 │ │ │ └── default.nix │ │ ├── lob-2019 │ │ │ └── default.nix │ │ ├── rogaining-2019 │ │ │ └── default.nix │ │ ├── skirogaining │ │ │ └── default.nix │ │ └── strom-roku-2023 │ │ │ └── default.nix │ ├── lib.nix │ ├── mala-zahradka-pro-radost.cz │ │ ├── default.nix │ │ └── www │ │ │ ├── README.md │ │ │ └── default.nix │ ├── ogion.cz │ │ ├── auth │ │ │ └── default.nix │ │ ├── bag │ │ │ ├── default.nix │ │ │ └── wallabag-data.patch │ │ ├── code │ │ │ └── default.nix │ │ ├── default.nix │ │ ├── develop │ │ │ └── default.nix │ │ ├── lego │ │ │ ├── default.nix │ │ │ └── extractor.py │ │ ├── mechmice │ │ │ └── default.nix │ │ ├── monitor │ │ │ ├── default.nix │ │ │ └── services │ │ │ │ ├── blackbox.nix │ │ │ │ ├── node.nix │ │ │ │ ├── php-fpm.nix │ │ │ │ └── pushgateway.nix │ │ ├── mysql │ │ │ ├── adminer.css │ │ │ └── default.nix │ │ ├── reader │ │ │ └── default.nix │ │ ├── temp │ │ │ └── default.nix │ │ ├── todo │ │ │ └── default.nix │ │ ├── tools │ │ │ ├── default.nix │ │ │ └── pdf │ │ │ │ └── password-remover.php │ │ └── www │ │ │ └── default.nix │ ├── ostrov-tucnaku.cz │ │ ├── default.nix │ │ ├── obrazky │ │ │ └── default.nix │ │ ├── tgwh │ │ │ └── default.nix │ │ └── www │ │ │ └── default.nix │ ├── rogaining.org │ │ ├── default.nix │ │ └── pqe │ │ │ └── default.nix │ ├── security │ │ └── fail2ban.nix │ └── tojnar.cz │ │ ├── cyklogaining │ │ └── default.nix │ │ ├── default.nix │ │ ├── krk │ │ └── default.nix │ │ ├── skirogaining │ │ └── default.nix │ │ └── www │ │ └── default.nix ├── default.nix ├── evan │ ├── README.md │ ├── configuration.nix │ └── hardware-configuration.nix ├── list.nix ├── noelle │ ├── README.md │ ├── configuration.nix │ └── hardware-configuration.nix ├── sy │ ├── README.md │ ├── cleanups.nix │ ├── configuration.nix │ └── hardware-configuration.nix └── theo │ ├── README.md │ ├── configuration.nix │ ├── development │ └── web.nix │ └── hardware-configuration.nix ├── pkgs ├── adminer │ └── default.nix ├── default.nix ├── flarum-webhooks-telegram-bridge │ └── default.nix ├── flarum │ ├── composer.json │ ├── composer.lock │ ├── default.nix │ ├── flarum.nix │ └── update.sh ├── pechar │ └── default.nix ├── pengu │ └── default.nix ├── phpbb │ ├── core.nix │ ├── default.nix │ └── langs │ │ └── cs.nix ├── selfoss │ ├── default.nix │ └── update.sh ├── sunflower │ └── default.nix ├── transmission_3-gtk │ ├── default.nix │ ├── transmission-3.00-miniupnpc-2.2.8.patch │ └── transmission-3.00-openssl-3.patch ├── utils │ ├── default.nix │ ├── deploy │ ├── deploy-pages │ ├── git-auto-fixup │ ├── git-part-pick │ ├── nix-explore-closure-size │ ├── nopt │ │ └── default.nix │ ├── sman │ ├── strip-clip-path-transforms │ │ ├── default.nix │ │ ├── fix-clip-path.xsl │ │ └── remove-transform-attr.xsl │ └── update └── wrcq │ └── default.nix ├── secrets ├── authelia-default-jwt.age ├── authelia-default-storage-encryption-key.age ├── bag.ogion.cz-secret.age ├── gitea-token-jtojnar.age ├── ostrov-tucnaku.cz-telegram-api-key.age ├── ostrov-tucnaku.cz-telegram-webhook-token.age └── secrets.nix └── shell.nix /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | secrets/*.age binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | *.log 3 | result* 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/README.md -------------------------------------------------------------------------------- /common/cachix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/cachix.nix -------------------------------------------------------------------------------- /common/cachix/fossar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/cachix/fossar.nix -------------------------------------------------------------------------------- /common/cachix/tojnar-cz.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/cachix/tojnar-cz.nix -------------------------------------------------------------------------------- /common/configs/keepassxc/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/configs/keepassxc/default.nix -------------------------------------------------------------------------------- /common/configs/keepassxc/keepassxc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/configs/keepassxc/keepassxc.ini -------------------------------------------------------------------------------- /common/configs/keepassxc/nmh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/configs/keepassxc/nmh.json -------------------------------------------------------------------------------- /common/data/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/data/config.fish -------------------------------------------------------------------------------- /common/data/keys.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/data/keys.nix -------------------------------------------------------------------------------- /common/data/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/data/users.nix -------------------------------------------------------------------------------- /common/gnupgdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/gnupgdir.py -------------------------------------------------------------------------------- /common/home-profiles/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/list.nix -------------------------------------------------------------------------------- /common/home-profiles/ripgrep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/ripgrep.nix -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/Default.sublime-keymap -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/Macros/delete_subword.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/Macros/delete_subword.sublime-macro -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/Macros/delete_subword_forward.sublime-macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/Macros/delete_subword_forward.sublime-macro -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/PackageSettings/LSP-rust-analyzer.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/PackageSettings/LSP-rust-analyzer.sublime-settings -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/PackageSettings/LSP-typescript.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/PackageSettings/LSP-typescript.sublime-settings -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/PackageSettings/LSP.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/PackageSettings/LSP.sublime-settings -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/Preferences.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/Preferences.sublime-settings -------------------------------------------------------------------------------- /common/home-profiles/sublime/Declarative/Snippets/Rust/tests-module.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/Declarative/Snippets/Rust/tests-module.sublime-snippet -------------------------------------------------------------------------------- /common/home-profiles/sublime/MergeDeclarative/Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/MergeDeclarative/Default.sublime-keymap -------------------------------------------------------------------------------- /common/home-profiles/sublime/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/sublime/default.nix -------------------------------------------------------------------------------- /common/home-profiles/xcompose/XCompose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/xcompose/XCompose -------------------------------------------------------------------------------- /common/home-profiles/xcompose/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/home-profiles/xcompose/default.nix -------------------------------------------------------------------------------- /common/modules/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/modules/list.nix -------------------------------------------------------------------------------- /common/modules/postgres-upgrade.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/modules/postgres-upgrade.nix -------------------------------------------------------------------------------- /common/modules/postgres.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/modules/postgres.nix -------------------------------------------------------------------------------- /common/overlays/debugging/default.nix: -------------------------------------------------------------------------------- 1 | final: prev: { 2 | } 3 | -------------------------------------------------------------------------------- /common/overlays/default.nix: -------------------------------------------------------------------------------- 1 | ../../pkgs/default.nix -------------------------------------------------------------------------------- /common/overlays/wallpapers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/overlays/wallpapers.nix -------------------------------------------------------------------------------- /common/profiles/core.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/core.nix -------------------------------------------------------------------------------- /common/profiles/environment.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/environment.nix -------------------------------------------------------------------------------- /common/profiles/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/fonts.nix -------------------------------------------------------------------------------- /common/profiles/jtojnar-firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/jtojnar-firefox.nix -------------------------------------------------------------------------------- /common/profiles/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/list.nix -------------------------------------------------------------------------------- /common/profiles/virt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/profiles/virt.nix -------------------------------------------------------------------------------- /common/ssdp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/common/ssdp.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/azazel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/README.md -------------------------------------------------------------------------------- /hosts/azazel/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/configuration.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/archiv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/archiv/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/beta/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/beta/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/cdn/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/cdn/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/forum/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/forum/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/jitsucards/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/jitsucards/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/kafu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/kafu/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/lisured/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/lisured/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/mediacache/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/mediacache/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/pechar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/pechar/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/pengu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/pengu/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/preklady/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/preklady/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/provider/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/provider/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/saman/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/saman/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/shout/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/shout/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/upload/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/upload/default.nix -------------------------------------------------------------------------------- /hosts/azazel/fan-club-penguin.cz/www/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/fan-club-penguin.cz/www/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/agenda/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/agenda/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/bloudeni/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/bloudeni/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/entries/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/entries/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/hrob-2020/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/hrob-2020/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/hrob-2022/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/hrob-2022/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/lob-2019/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/lob-2019/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/rogaining-2019/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/rogaining-2019/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/skirogaining/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/skirogaining/default.nix -------------------------------------------------------------------------------- /hosts/azazel/krk-litvinov.cz/strom-roku-2023/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/krk-litvinov.cz/strom-roku-2023/default.nix -------------------------------------------------------------------------------- /hosts/azazel/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/lib.nix -------------------------------------------------------------------------------- /hosts/azazel/mala-zahradka-pro-radost.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/mala-zahradka-pro-radost.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/mala-zahradka-pro-radost.cz/www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/mala-zahradka-pro-radost.cz/www/README.md -------------------------------------------------------------------------------- /hosts/azazel/mala-zahradka-pro-radost.cz/www/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/mala-zahradka-pro-radost.cz/www/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/auth/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/auth/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/bag/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/bag/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/bag/wallabag-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/bag/wallabag-data.patch -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/code/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/code/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/develop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/develop/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/lego/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/lego/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/lego/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/lego/extractor.py -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/mechmice/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/mechmice/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/monitor/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/monitor/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/monitor/services/blackbox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/monitor/services/blackbox.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/monitor/services/node.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/monitor/services/node.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/monitor/services/php-fpm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/monitor/services/php-fpm.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/monitor/services/pushgateway.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/monitor/services/pushgateway.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/mysql/adminer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/mysql/adminer.css -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/mysql/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/mysql/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/reader/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/reader/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/temp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/temp/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/todo/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/todo/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/tools/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/tools/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/tools/pdf/password-remover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/tools/pdf/password-remover.php -------------------------------------------------------------------------------- /hosts/azazel/ogion.cz/www/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ogion.cz/www/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ostrov-tucnaku.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ostrov-tucnaku.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ostrov-tucnaku.cz/obrazky/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ostrov-tucnaku.cz/obrazky/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ostrov-tucnaku.cz/tgwh/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ostrov-tucnaku.cz/tgwh/default.nix -------------------------------------------------------------------------------- /hosts/azazel/ostrov-tucnaku.cz/www/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/ostrov-tucnaku.cz/www/default.nix -------------------------------------------------------------------------------- /hosts/azazel/rogaining.org/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/rogaining.org/default.nix -------------------------------------------------------------------------------- /hosts/azazel/rogaining.org/pqe/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/rogaining.org/pqe/default.nix -------------------------------------------------------------------------------- /hosts/azazel/security/fail2ban.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/security/fail2ban.nix -------------------------------------------------------------------------------- /hosts/azazel/tojnar.cz/cyklogaining/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/tojnar.cz/cyklogaining/default.nix -------------------------------------------------------------------------------- /hosts/azazel/tojnar.cz/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/tojnar.cz/default.nix -------------------------------------------------------------------------------- /hosts/azazel/tojnar.cz/krk/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/tojnar.cz/krk/default.nix -------------------------------------------------------------------------------- /hosts/azazel/tojnar.cz/skirogaining/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/tojnar.cz/skirogaining/default.nix -------------------------------------------------------------------------------- /hosts/azazel/tojnar.cz/www/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/azazel/tojnar.cz/www/default.nix -------------------------------------------------------------------------------- /hosts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/default.nix -------------------------------------------------------------------------------- /hosts/evan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/evan/README.md -------------------------------------------------------------------------------- /hosts/evan/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/evan/configuration.nix -------------------------------------------------------------------------------- /hosts/evan/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/evan/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/list.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/list.nix -------------------------------------------------------------------------------- /hosts/noelle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/noelle/README.md -------------------------------------------------------------------------------- /hosts/noelle/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/noelle/configuration.nix -------------------------------------------------------------------------------- /hosts/noelle/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/noelle/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/sy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/sy/README.md -------------------------------------------------------------------------------- /hosts/sy/cleanups.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/sy/cleanups.nix -------------------------------------------------------------------------------- /hosts/sy/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/sy/configuration.nix -------------------------------------------------------------------------------- /hosts/sy/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/sy/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/theo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/theo/README.md -------------------------------------------------------------------------------- /hosts/theo/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/theo/configuration.nix -------------------------------------------------------------------------------- /hosts/theo/development/web.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/theo/development/web.nix -------------------------------------------------------------------------------- /hosts/theo/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/hosts/theo/hardware-configuration.nix -------------------------------------------------------------------------------- /pkgs/adminer/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/adminer/default.nix -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/flarum-webhooks-telegram-bridge/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum-webhooks-telegram-bridge/default.nix -------------------------------------------------------------------------------- /pkgs/flarum/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum/composer.json -------------------------------------------------------------------------------- /pkgs/flarum/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum/composer.lock -------------------------------------------------------------------------------- /pkgs/flarum/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum/default.nix -------------------------------------------------------------------------------- /pkgs/flarum/flarum.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum/flarum.nix -------------------------------------------------------------------------------- /pkgs/flarum/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/flarum/update.sh -------------------------------------------------------------------------------- /pkgs/pechar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/pechar/default.nix -------------------------------------------------------------------------------- /pkgs/pengu/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/pengu/default.nix -------------------------------------------------------------------------------- /pkgs/phpbb/core.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/phpbb/core.nix -------------------------------------------------------------------------------- /pkgs/phpbb/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/phpbb/default.nix -------------------------------------------------------------------------------- /pkgs/phpbb/langs/cs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/phpbb/langs/cs.nix -------------------------------------------------------------------------------- /pkgs/selfoss/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/selfoss/default.nix -------------------------------------------------------------------------------- /pkgs/selfoss/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/selfoss/update.sh -------------------------------------------------------------------------------- /pkgs/sunflower/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/sunflower/default.nix -------------------------------------------------------------------------------- /pkgs/transmission_3-gtk/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/transmission_3-gtk/default.nix -------------------------------------------------------------------------------- /pkgs/transmission_3-gtk/transmission-3.00-miniupnpc-2.2.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/transmission_3-gtk/transmission-3.00-miniupnpc-2.2.8.patch -------------------------------------------------------------------------------- /pkgs/transmission_3-gtk/transmission-3.00-openssl-3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/transmission_3-gtk/transmission-3.00-openssl-3.patch -------------------------------------------------------------------------------- /pkgs/utils/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/default.nix -------------------------------------------------------------------------------- /pkgs/utils/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/deploy -------------------------------------------------------------------------------- /pkgs/utils/deploy-pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/deploy-pages -------------------------------------------------------------------------------- /pkgs/utils/git-auto-fixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/git-auto-fixup -------------------------------------------------------------------------------- /pkgs/utils/git-part-pick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/git-part-pick -------------------------------------------------------------------------------- /pkgs/utils/nix-explore-closure-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/nix-explore-closure-size -------------------------------------------------------------------------------- /pkgs/utils/nopt/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/nopt/default.nix -------------------------------------------------------------------------------- /pkgs/utils/sman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/sman -------------------------------------------------------------------------------- /pkgs/utils/strip-clip-path-transforms/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/strip-clip-path-transforms/default.nix -------------------------------------------------------------------------------- /pkgs/utils/strip-clip-path-transforms/fix-clip-path.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/strip-clip-path-transforms/fix-clip-path.xsl -------------------------------------------------------------------------------- /pkgs/utils/strip-clip-path-transforms/remove-transform-attr.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/strip-clip-path-transforms/remove-transform-attr.xsl -------------------------------------------------------------------------------- /pkgs/utils/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/utils/update -------------------------------------------------------------------------------- /pkgs/wrcq/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/pkgs/wrcq/default.nix -------------------------------------------------------------------------------- /secrets/authelia-default-jwt.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/authelia-default-jwt.age -------------------------------------------------------------------------------- /secrets/authelia-default-storage-encryption-key.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/authelia-default-storage-encryption-key.age -------------------------------------------------------------------------------- /secrets/bag.ogion.cz-secret.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/bag.ogion.cz-secret.age -------------------------------------------------------------------------------- /secrets/gitea-token-jtojnar.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/gitea-token-jtojnar.age -------------------------------------------------------------------------------- /secrets/ostrov-tucnaku.cz-telegram-api-key.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/ostrov-tucnaku.cz-telegram-api-key.age -------------------------------------------------------------------------------- /secrets/ostrov-tucnaku.cz-telegram-webhook-token.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/ostrov-tucnaku.cz-telegram-webhook-token.age -------------------------------------------------------------------------------- /secrets/secrets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/secrets/secrets.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtojnar/nixfiles/HEAD/shell.nix --------------------------------------------------------------------------------