├── .envrc ├── .gitignore ├── README.md ├── devshell.nix ├── flake.lock ├── flake.nix ├── hosts ├── README.md ├── cog │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ ├── jon │ │ └── home-configuration.nix │ │ └── ness.nix ├── eve │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon.nix ├── fit │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon.nix ├── hub │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon.nix ├── iso │ ├── README.md │ ├── configuration.nix │ ├── downloader.sh │ └── installer.sh ├── kit │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── homelab.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon │ │ ├── home-configuration.nix │ │ └── withings-sync.age ├── lux │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon.nix ├── sim │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ │ └── jon.nix └── wit │ ├── README.md │ ├── configuration.nix │ ├── disk-configuration.nix │ ├── hardware-configuration.nix │ ├── ssh_host_ed25519_key.pub │ └── users │ ├── jon.nix │ └── ness.nix ├── lib ├── default.nix ├── genAttrs.nix ├── homeModules.nix ├── ls.nix ├── networking.nix ├── nixosModules.nix └── users.nix ├── modules ├── README.md ├── home │ ├── default │ │ ├── configs │ │ │ ├── agenix.nix │ │ │ ├── default.nix │ │ │ ├── home.nix │ │ │ ├── impermanence.nix │ │ │ ├── neovim.nix │ │ │ ├── networking.nix │ │ │ ├── nix-index.nix │ │ │ ├── nix-search-cli.nix │ │ │ ├── nix.nix │ │ │ ├── programs.nix │ │ │ ├── services.nix │ │ │ ├── storage.nix │ │ │ ├── stylix.nix │ │ │ └── tmpfiles.nix │ │ ├── default.nix │ │ └── options │ │ │ ├── accounts.nix │ │ │ ├── bluetuith.nix │ │ │ ├── cava.nix │ │ │ ├── default.nix │ │ │ ├── desktop.nix │ │ │ ├── direnv.nix │ │ │ ├── fzf.nix │ │ │ ├── garmin.nix │ │ │ ├── git.nix │ │ │ ├── mpd │ │ │ ├── default.nix │ │ │ └── mpd-url.nix │ │ │ ├── ncmpcpp.nix │ │ │ ├── neomutt │ │ │ ├── binds.nix │ │ │ ├── default.nix │ │ │ ├── hjkl.nix │ │ │ ├── mailcap.nix │ │ │ ├── search.nix │ │ │ └── style.nix │ │ │ ├── ripgrep.nix │ │ │ ├── rmpc.nix │ │ │ ├── sound.nix │ │ │ ├── syncthing.nix │ │ │ ├── tmux │ │ │ ├── default.nix │ │ │ └── tmux.conf │ │ │ ├── withings-sync.nix │ │ │ ├── yazi.nix │ │ │ ├── zoxide.nix │ │ │ └── zsh.nix │ ├── desktop │ │ ├── default │ │ │ ├── configs │ │ │ │ ├── default.nix │ │ │ │ ├── design.nix │ │ │ │ ├── media.nix │ │ │ │ ├── messages.nix │ │ │ │ ├── productivity.nix │ │ │ │ ├── programs.nix │ │ │ │ └── services.nix │ │ │ ├── default.nix │ │ │ └── options │ │ │ │ ├── asana.nix │ │ │ │ ├── bluebubbles.nix │ │ │ │ ├── chromium │ │ │ │ ├── default.nix │ │ │ │ ├── lib.nix │ │ │ │ └── registry.nix │ │ │ │ ├── davinci-resolve │ │ │ │ ├── davinci-resolve-export.sh │ │ │ │ ├── davinci-resolve-import.sh │ │ │ │ └── default.nix │ │ │ │ ├── default.nix │ │ │ │ ├── dolphin-emu.nix │ │ │ │ ├── firefox │ │ │ │ ├── addons.nix │ │ │ │ └── default.nix │ │ │ │ ├── flatpak.nix │ │ │ │ ├── freetube.nix │ │ │ │ ├── fuzzel.nix │ │ │ │ ├── gimp.nix │ │ │ │ ├── gmail.nix │ │ │ │ ├── google-analytics.nix │ │ │ │ ├── google-calendar.nix │ │ │ │ ├── google-meet.nix │ │ │ │ ├── harvest.nix │ │ │ │ ├── home-assistant.nix │ │ │ │ ├── immich.nix │ │ │ │ ├── imv.nix │ │ │ │ ├── isy.nix │ │ │ │ ├── jellyfin.nix │ │ │ │ ├── keyd │ │ │ │ ├── default.nix │ │ │ │ └── lib.nix │ │ │ │ ├── kitty.nix │ │ │ │ ├── localsend.nix │ │ │ │ ├── mpv.nix │ │ │ │ ├── neomutt.nix │ │ │ │ ├── onepassword.nix │ │ │ │ ├── projectm.nix │ │ │ │ ├── shotcut.nix │ │ │ │ ├── slack.nix │ │ │ │ ├── sparrow.nix │ │ │ │ ├── steam.nix │ │ │ │ ├── telegram.nix │ │ │ │ ├── wezterm.nix │ │ │ │ ├── zathura.nix │ │ │ │ └── zwift.nix │ │ ├── gnome │ │ │ └── default.nix │ │ └── hyprland │ │ │ ├── README.md │ │ │ ├── default.nix │ │ │ ├── desktop-entries.nix │ │ │ ├── hypr │ │ │ ├── cursors.nix │ │ │ ├── default.nix │ │ │ ├── floating.nix │ │ │ ├── fullscreen.nix │ │ │ ├── graphics.nix │ │ │ ├── groups.nix │ │ │ ├── hyprbars.nix │ │ │ ├── hyprexpo.nix │ │ │ ├── launchers.nix │ │ │ ├── main.nix │ │ │ ├── scripts │ │ │ │ ├── default.nix │ │ │ │ ├── hypr-button.sh │ │ │ │ ├── hypr-float.sh │ │ │ │ ├── hypr-floatorcycle.sh │ │ │ │ ├── hypr-movewindoworgrouporactive.sh │ │ │ │ ├── hypr-resizefloating.sh │ │ │ │ ├── hypr-supertab.sh │ │ │ │ ├── hypr-tileorsplit.sh │ │ │ │ ├── hypr-togglefloating.sh │ │ │ │ ├── hypr-togglefullscreenorhidden.sh │ │ │ │ ├── hypr-togglegrouporkill.sh │ │ │ │ ├── hypr-togglegrouporlock.sh │ │ │ │ ├── hypr-togglespecial.sh │ │ │ │ └── hypr-toggletitlebars.sh │ │ │ ├── special.nix │ │ │ ├── supertab.nix │ │ │ ├── windows.nix │ │ │ └── workspaces.nix │ │ │ ├── hypridle.nix │ │ │ ├── hyprlock.nix │ │ │ ├── kanshi.nix │ │ │ ├── keyd.nix │ │ │ ├── mako.nix │ │ │ ├── mediactl.nix │ │ │ ├── nautilus.nix │ │ │ ├── printscreen.nix │ │ │ ├── programs.nix │ │ │ ├── rofi │ │ │ ├── blezz.nix │ │ │ ├── calc.nix │ │ │ ├── clips.nix │ │ │ ├── default.nix │ │ │ ├── emoji.nix │ │ │ ├── launcher.nix │ │ │ ├── scripts │ │ │ │ ├── default.nix │ │ │ │ ├── rofi-cliphist.sh │ │ │ │ ├── rofi-hyprland.sh │ │ │ │ ├── rofi-sinks.sh │ │ │ │ └── rofi-toggle.sh │ │ │ ├── sinks.nix │ │ │ └── theme.nix │ │ │ ├── swaylock.nix │ │ │ ├── swww.nix │ │ │ ├── waybar │ │ │ ├── default.nix │ │ │ ├── modules-center.nix │ │ │ ├── modules-left.nix │ │ │ ├── modules-right.nix │ │ │ └── style.css │ │ │ └── wlogout.nix │ └── users │ │ ├── jon │ │ ├── accounts │ │ │ ├── calendar.nix │ │ │ ├── contact.nix │ │ │ ├── default.nix │ │ │ ├── email-addresses.age │ │ │ ├── email-home.nix │ │ │ ├── email-work.nix │ │ │ ├── email.nix │ │ │ ├── password-fastmail.age │ │ │ ├── password-gmail.age │ │ │ └── password-icloud.age │ │ ├── default.nix │ │ ├── git-credentials.age │ │ ├── git.nix │ │ ├── mine.nix │ │ ├── programs.nix │ │ ├── services.nix │ │ ├── storage.nix │ │ └── terminal.nix │ │ └── ness │ │ ├── default.nix │ │ └── storage.nix └── nixos │ ├── default │ ├── configs │ │ ├── agenix.nix │ │ ├── default.nix │ │ ├── disko.nix │ │ ├── docker.nix │ │ ├── groups.nix │ │ ├── impermanence.nix │ │ ├── neovim.nix │ │ ├── networking.nix │ │ ├── nix-index.nix │ │ ├── nix.nix │ │ ├── nixpkgs.nix │ │ ├── programs.nix │ │ ├── security.nix │ │ ├── services.nix │ │ ├── storage.nix │ │ ├── stylix.nix │ │ ├── tmpfiles.nix │ │ └── users.nix │ ├── default.nix │ ├── options │ │ ├── arr │ │ │ ├── default.nix │ │ │ ├── lidarr.nix │ │ │ ├── radarr.nix │ │ │ ├── sabnzbd.nix │ │ │ └── sonarr.nix │ │ ├── backblaze.nix │ │ ├── beszel │ │ │ ├── agent.nix │ │ │ ├── default.nix │ │ │ └── hub.nix │ │ ├── blocky │ │ │ ├── blacklist.txt │ │ │ ├── default.nix │ │ │ └── whitelist.txt │ │ ├── bluetooth.nix │ │ ├── btrbk.nix │ │ ├── default.nix │ │ ├── desktop.nix │ │ ├── earlyoom.nix │ │ ├── freshrss │ │ │ ├── default.nix │ │ │ └── freshrss.age │ │ ├── garmin.nix │ │ ├── gitea │ │ │ ├── default.nix │ │ │ └── gitea.age │ │ ├── grafana │ │ │ ├── default.nix │ │ │ └── provisioning │ │ │ │ ├── blocky-queries.json │ │ │ │ ├── blocky.json │ │ │ │ ├── nodes.json │ │ │ │ ├── nut.json │ │ │ │ ├── smokeping.json │ │ │ │ ├── systemd.json │ │ │ │ ├── unifi │ │ │ │ ├── aps.json │ │ │ │ ├── clients.json │ │ │ │ ├── sites.json │ │ │ │ └── switches.json │ │ │ │ └── zfs.json │ │ ├── home-assistant │ │ │ ├── configuration.yaml │ │ │ ├── default.nix │ │ │ ├── hass.nix │ │ │ ├── isy.age │ │ │ ├── isy.nix │ │ │ └── zwave.nix │ │ ├── immich.nix │ │ ├── jellyfin.nix │ │ ├── keyd │ │ │ ├── default.nix │ │ │ ├── keyboards │ │ │ │ ├── all.nix │ │ │ │ ├── apple.nix │ │ │ │ ├── framework.nix │ │ │ │ ├── g600.nix │ │ │ │ ├── hhkb.nix │ │ │ │ ├── k811.nix │ │ │ │ ├── rii.nix │ │ │ │ ├── t480s.nix │ │ │ │ └── w3.nix │ │ │ ├── local-overrides.quirks │ │ │ └── monitor.sh │ │ ├── mpd.nix │ │ ├── mysql.nix │ │ ├── nfs.nix │ │ ├── nginx.nix │ │ ├── plex.nix │ │ ├── postgresql.nix │ │ ├── prometheus.nix │ │ ├── rsshub.nix │ │ ├── rust-motd.nix │ │ ├── syncthing.nix │ │ ├── tailscale.nix │ │ ├── tandoor-recipes │ │ │ ├── default.nix │ │ │ └── tandoor-recipes.age │ │ ├── tautulli.nix │ │ ├── tiddlywiki.nix │ │ ├── traefik │ │ │ ├── README.md │ │ │ ├── ca.nix │ │ │ ├── cloudflare.age │ │ │ ├── default.nix │ │ │ ├── dns.nix │ │ │ └── lib.nix │ │ ├── unifi.nix │ │ ├── whoami.nix │ │ └── whoogle.nix │ └── overlays │ │ ├── default.nix │ │ ├── firefox.nix │ │ ├── misc.nix │ │ ├── nur.nix │ │ ├── nvf │ │ ├── default.nix │ │ └── nvf.age │ │ ├── self.nix │ │ └── unstable.nix │ ├── desktop │ ├── default │ │ ├── configs │ │ │ ├── codecs.nix │ │ │ ├── default.nix │ │ │ ├── fonts.nix │ │ │ ├── programs.nix │ │ │ ├── services.nix │ │ │ └── sound.nix │ │ ├── default.nix │ │ └── options │ │ │ ├── chromium.nix │ │ │ ├── default.nix │ │ │ ├── dolphin-emu.nix │ │ │ ├── flatpak.nix │ │ │ ├── localsend.nix │ │ │ └── steam.nix │ ├── gnome.nix │ ├── homelab.nix │ └── hyprland.nix │ └── hardware │ ├── framework-11th-gen-intel.nix │ ├── linode.nix │ ├── radeon-rx-580.nix │ ├── rtx-4070-ti-super.nix │ └── vm.nix ├── packages ├── agenix │ ├── agenix.sh │ └── default.nix ├── default.nix ├── derive │ ├── default.nix │ ├── derive.sh │ ├── hex.py │ └── ssh.py ├── docker-nvidia-smi.nix ├── enableWayland.nix ├── fetchgithub.nix ├── ipaddr.nix ├── isy.nix ├── mkApplication.nix ├── mkScript.nix ├── mpd-url.nix ├── nixos │ ├── default.nix │ ├── nixos.sh │ └── templates │ │ ├── configuration.nix │ │ ├── disk-configuration.nix │ │ ├── hardware-configuration.nix │ │ ├── home.nix │ │ └── user.nix ├── qr.nix ├── shizuku.nix ├── sshed │ ├── default.nix │ └── sshed.sh ├── sv.nix ├── wrapWithFlags.nix └── zwift.nix ├── secrets ├── README.md ├── default.nix ├── hex.age ├── home │ ├── cog-jon │ │ ├── 13d6a2287424ce33fe718bf2b26acf57-icloud.age │ │ ├── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ │ ├── 5f7cdffb2756041796218512731ebd11-addresses.age │ │ ├── bc384bd508ce60756e1bb14de78e6644-fastmail.age │ │ └── fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age │ ├── eve-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ ├── fit-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ ├── hub-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ ├── kit-jon │ │ ├── 13d6a2287424ce33fe718bf2b26acf57-icloud.age │ │ ├── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ │ ├── 5f7cdffb2756041796218512731ebd11-addresses.age │ │ ├── bc384bd508ce60756e1bb14de78e6644-fastmail.age │ │ ├── c41a6ce86ebc40383ecc7e4bc442d5b6-withings-sync.age │ │ └── fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age │ ├── lux-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ ├── sim-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age │ └── wit-jon │ │ └── 16a0e6c1c621952c0ac855ae9371f816-git-credentials.age ├── id_age.pub └── nixos │ ├── cog │ ├── 05042fc409b321d6bffa51259729525f-root-password.age │ ├── 1257f7a03c6157a670f86aa65e8c2003-btrbk-password.age │ ├── 1b9676b6d210e90752464d5be6f1c5df-ca.age │ ├── 99ace010b1f196cf4438963dbf0884be-jon-password.age │ ├── bb6b80d9ab3a1e0dcf79c454dd497df7-nvf.age │ ├── c8d86144084464b7a6e6fd6473aec30e-beszel-password.age │ ├── ce380c3192d96d44e8617c0f0dcfee4b-hex.age │ ├── ce7fd49a1c5fb7aebf157ebb12e21ea0-ness-password.age │ └── e974c96e03a7ce94d0e45a4b0658b299-cloudflare.age │ ├── eve │ ├── 0d352c0d6425469cfb2bbb086fdb394d-root-password.age │ ├── 5717cf320426005378d713c073fe6c94-beszel-password.age │ ├── 73bc7cf16f98c1b1f2adf17e81c8653c-cloudflare.age │ ├── b673f161973e2e3fcdbd3fe7393adc52-jon-password.age │ ├── c4b0001d7888b122054221a32b33384e-nvf.age │ ├── c83b08920ebb8f3efaac2a9ac0ff3b67-btrbk-password.age │ ├── e0e25b647a691b5ae303043625f1eae1-ness-password.age │ ├── e2aa0870ddbb9056daaed90fa5173751-hex.age │ └── f2faf221e281b10433e3354e08075aea-ca.age │ ├── fit │ ├── 128c15c5d2345a97d7bb10959a4cb754-jon-password.age │ ├── 30ca492b4d6939875230d0b3e332b993-ca.age │ ├── 3f28af14b7e08f6ea0c8cd0e76cc4192-cloudflare.age │ ├── 56c289c1fe7ab557c2cd4b7e5fa73053-ness-password.age │ ├── 6c0eac15697d46e817d7a100f381070e-nvf.age │ ├── ae8f077423f6ece77c456304a68edc64-btrbk-password.age │ ├── b5b1fce2db48854a03eaced8b7157a56-hex.age │ ├── d0e5058b382d25a07428be62cf97c38d-root-password.age │ └── d2787887eed4ac3083b0f2f8193aeb98-beszel-password.age │ ├── hub │ ├── 0063d939e50c47f4feec6c02927bb80c-cloudflare.age │ ├── 027bb9d20ecaf5718821a70c5efd5ff3-jon-password.age │ ├── 383198f39f2954a38f5ec51614d731fb-hex.age │ ├── 3aadc745304eef90d2207e27bc288bfb-beszel-password.age │ ├── 4d8e0e6f6d90f675853f79292ad1f237-root-password.age │ ├── 612ff83e610bdf4988fee8026d6d2afe-nvf.age │ ├── 90c3ce68a4d9e6b86f7d2aa172643bc1-ness-password.age │ ├── 959207e604a412ef80c8e5be2dafade8-ca.age │ ├── d67b839920e8e0372fec5e9e4d54e713-isy.age │ └── ea2aa68bfb24f71bdf5c01483c97bee9-btrbk-password.age │ ├── kit │ ├── 018d2ad37350709578daeb8df8ac561d-nvf.age │ ├── 184c84896dcc7ebc2bb44bc2536c9d63-root-password.age │ ├── 1ad26efa68effbe856f9cd78449fdf35-ca.age │ ├── 2a5c0d08cc5c40b8f9f86a46c495fa3e-cloudflare.age │ ├── 2bcc7f438125cf9a5194278c077375f4-ness-password.age │ ├── 5fb214185ab97108a3f578afb8ba437d-btrbk-password.age │ ├── cd061829ddadf03ce674e67f9a12b0c3-hex.age │ ├── e3eca8f972857d7eab593f76ae37f5bf-jon-password.age │ └── f6cb4adfb31d16acfa84cd18548b3cea-beszel-password.age │ ├── lux │ ├── 63e865959eb6b472c1a8e86090485d4d-btrbk-password.age │ ├── 66fa236a54ae8bde35ca9c25468821a6-hex.age │ ├── 90cd5a28cba49cb9522ce9972cb5d15b-root-password.age │ ├── a34055de7d43a00640e30be986e2cad9-ca.age │ ├── abed9561e1d0c98da638c15bdf3a4f3c-jon-password.age │ ├── ac59b84bea412b0a9e297d1a89851595-beszel-password.age │ ├── b0709e25b52a919e01d50b70d4321677-nvf.age │ ├── d1e280114c952a3b0350e3826f522401-gitea.age │ ├── ed6be4a768421b5d5b93792f2499fca9-cloudflare.age │ └── ff4bd4962e59fe610caf8781b4e91334-ness-password.age │ ├── sim │ ├── 029dbf371cf4b06b6c792ee2e0c16405-btrbk-password.age │ ├── 08ca44ad6aede1aeb27972e9f547745b-root-password.age │ ├── 43b6e185e25c1472aba47f99325c88f0-hex.age │ ├── 60fe32a1205480917ed2c6143f9b9853-beszel-password.age │ ├── 700ee5ea1cc718758026d50c202cf1fd-ness-password.age │ ├── 7ce2870222deffe90bb42fc268f01664-cloudflare.age │ ├── 85608ad12bef1df680964cf56f3eee03-ca.age │ ├── 8e2664a83c157ff9d9177c3a91a2ae5b-nvf.age │ └── f7b1d0b59fa69b02393ee18e4ddada2f-jon-password.age │ └── wit │ ├── 01210b2909ceb7847af7de8755228ec2-jon-password.age │ ├── 03bef144b13d79d0b1e9006a90389ab0-ca.age │ ├── 07dfceb8d2defc8620bb75d8bae96e00-ness-password.age │ ├── 0a87d9f804fda1f28409c5fbcce2afe1-btrbk-password.age │ ├── 1969619886755ebbeecb9264e696c4f4-cloudflare.age │ ├── 715998ed49179dca354f358a1b2bf125-root-password.age │ ├── a2e62f7e222bd51c04d555b073c6c05d-hex.age │ ├── c289be6399a0e7b6606254410f85391e-nvf.age │ └── f7b876b674771f6aa5c2e2cc12a40bd3-beszel-password.age ├── users ├── README.md ├── beszel │ ├── default.nix │ ├── id_age.pub │ ├── id_ed25519.pub │ └── password.age ├── btrbk │ ├── default.nix │ ├── id_age.pub │ ├── id_ed25519.pub │ └── password.age ├── jon │ ├── default.nix │ ├── id_age.pub │ ├── id_ed25519.pub │ └── password.age ├── ness │ ├── default.nix │ ├── id_age.pub │ ├── id_ed25519.pub │ └── password.age └── root │ ├── default.nix │ ├── id_age.pub │ ├── id_ed25519.pub │ └── password.age └── zones ├── README.md ├── ca.age ├── ca.crt ├── default.nix ├── home ├── README.md └── default.nix ├── nest ├── README.md └── default.nix ├── tail ├── README.md └── default.nix └── work ├── README.md └── default.nix /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/README.md -------------------------------------------------------------------------------- /devshell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/devshell.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/README.md -------------------------------------------------------------------------------- /hosts/cog/README.md: -------------------------------------------------------------------------------- 1 | # cog ⚙ 2 | 3 | Framework laptop 4 | -------------------------------------------------------------------------------- /hosts/cog/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/configuration.nix -------------------------------------------------------------------------------- /hosts/cog/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/cog/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/cog/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/cog/users/jon/home-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/users/jon/home-configuration.nix -------------------------------------------------------------------------------- /hosts/cog/users/ness.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/cog/users/ness.nix -------------------------------------------------------------------------------- /hosts/eve/README.md: -------------------------------------------------------------------------------- 1 | # eve 2 | 3 | 2009 Mac Pro (at work) 4 | -------------------------------------------------------------------------------- /hosts/eve/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/eve/configuration.nix -------------------------------------------------------------------------------- /hosts/eve/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/eve/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/eve/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/eve/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/eve/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/eve/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/eve/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/eve/users/jon.nix -------------------------------------------------------------------------------- /hosts/fit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/README.md -------------------------------------------------------------------------------- /hosts/fit/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/configuration.nix -------------------------------------------------------------------------------- /hosts/fit/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/fit/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/fit/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/fit/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/fit/users/jon.nix -------------------------------------------------------------------------------- /hosts/hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/README.md -------------------------------------------------------------------------------- /hosts/hub/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/configuration.nix -------------------------------------------------------------------------------- /hosts/hub/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/hub/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/hub/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/hub/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/hub/users/jon.nix -------------------------------------------------------------------------------- /hosts/iso/README.md: -------------------------------------------------------------------------------- 1 | # iso 2 | 3 | Custom NixOS installer ISO 4 | -------------------------------------------------------------------------------- /hosts/iso/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/iso/configuration.nix -------------------------------------------------------------------------------- /hosts/iso/downloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/iso/downloader.sh -------------------------------------------------------------------------------- /hosts/iso/installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/iso/installer.sh -------------------------------------------------------------------------------- /hosts/kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/README.md -------------------------------------------------------------------------------- /hosts/kit/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/configuration.nix -------------------------------------------------------------------------------- /hosts/kit/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/kit/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/kit/homelab.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/homelab.nix -------------------------------------------------------------------------------- /hosts/kit/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/kit/users/jon/home-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/users/jon/home-configuration.nix -------------------------------------------------------------------------------- /hosts/kit/users/jon/withings-sync.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/kit/users/jon/withings-sync.age -------------------------------------------------------------------------------- /hosts/lux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/README.md -------------------------------------------------------------------------------- /hosts/lux/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/configuration.nix -------------------------------------------------------------------------------- /hosts/lux/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/lux/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/lux/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/lux/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/lux/users/jon.nix -------------------------------------------------------------------------------- /hosts/sim/README.md: -------------------------------------------------------------------------------- 1 | # sim 2 | 3 | Virtual Machine for experiments 4 | -------------------------------------------------------------------------------- /hosts/sim/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/sim/configuration.nix -------------------------------------------------------------------------------- /hosts/sim/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/sim/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/sim/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/sim/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/sim/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/sim/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/sim/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/sim/users/jon.nix -------------------------------------------------------------------------------- /hosts/wit/README.md: -------------------------------------------------------------------------------- 1 | # wit 2 | 3 | Thinkpad T480s 4 | -------------------------------------------------------------------------------- /hosts/wit/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/configuration.nix -------------------------------------------------------------------------------- /hosts/wit/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/disk-configuration.nix -------------------------------------------------------------------------------- /hosts/wit/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/wit/ssh_host_ed25519_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/ssh_host_ed25519_key.pub -------------------------------------------------------------------------------- /hosts/wit/users/jon.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/users/jon.nix -------------------------------------------------------------------------------- /hosts/wit/users/ness.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/hosts/wit/users/ness.nix -------------------------------------------------------------------------------- /lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/default.nix -------------------------------------------------------------------------------- /lib/genAttrs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/genAttrs.nix -------------------------------------------------------------------------------- /lib/homeModules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/homeModules.nix -------------------------------------------------------------------------------- /lib/ls.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/ls.nix -------------------------------------------------------------------------------- /lib/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/networking.nix -------------------------------------------------------------------------------- /lib/nixosModules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/nixosModules.nix -------------------------------------------------------------------------------- /lib/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/lib/users.nix -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/README.md -------------------------------------------------------------------------------- /modules/home/default/configs/agenix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/agenix.nix -------------------------------------------------------------------------------- /modules/home/default/configs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/default.nix -------------------------------------------------------------------------------- /modules/home/default/configs/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/home.nix -------------------------------------------------------------------------------- /modules/home/default/configs/impermanence.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/impermanence.nix -------------------------------------------------------------------------------- /modules/home/default/configs/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/neovim.nix -------------------------------------------------------------------------------- /modules/home/default/configs/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/networking.nix -------------------------------------------------------------------------------- /modules/home/default/configs/nix-index.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/nix-index.nix -------------------------------------------------------------------------------- /modules/home/default/configs/nix-search-cli.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/nix-search-cli.nix -------------------------------------------------------------------------------- /modules/home/default/configs/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/nix.nix -------------------------------------------------------------------------------- /modules/home/default/configs/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/programs.nix -------------------------------------------------------------------------------- /modules/home/default/configs/services.nix: -------------------------------------------------------------------------------- 1 | {...}: { 2 | services.ssh-agent.enable = true; 3 | } 4 | -------------------------------------------------------------------------------- /modules/home/default/configs/storage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/storage.nix -------------------------------------------------------------------------------- /modules/home/default/configs/stylix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/stylix.nix -------------------------------------------------------------------------------- /modules/home/default/configs/tmpfiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/configs/tmpfiles.nix -------------------------------------------------------------------------------- /modules/home/default/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/default.nix -------------------------------------------------------------------------------- /modules/home/default/options/accounts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/accounts.nix -------------------------------------------------------------------------------- /modules/home/default/options/bluetuith.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/bluetuith.nix -------------------------------------------------------------------------------- /modules/home/default/options/cava.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/cava.nix -------------------------------------------------------------------------------- /modules/home/default/options/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/default.nix -------------------------------------------------------------------------------- /modules/home/default/options/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/desktop.nix -------------------------------------------------------------------------------- /modules/home/default/options/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/direnv.nix -------------------------------------------------------------------------------- /modules/home/default/options/fzf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/fzf.nix -------------------------------------------------------------------------------- /modules/home/default/options/garmin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/garmin.nix -------------------------------------------------------------------------------- /modules/home/default/options/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/git.nix -------------------------------------------------------------------------------- /modules/home/default/options/mpd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/mpd/default.nix -------------------------------------------------------------------------------- /modules/home/default/options/mpd/mpd-url.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/mpd/mpd-url.nix -------------------------------------------------------------------------------- /modules/home/default/options/ncmpcpp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/ncmpcpp.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/binds.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/binds.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/default.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/hjkl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/hjkl.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/mailcap.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/mailcap.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/search.nix -------------------------------------------------------------------------------- /modules/home/default/options/neomutt/style.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/neomutt/style.nix -------------------------------------------------------------------------------- /modules/home/default/options/ripgrep.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/ripgrep.nix -------------------------------------------------------------------------------- /modules/home/default/options/rmpc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/rmpc.nix -------------------------------------------------------------------------------- /modules/home/default/options/sound.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/sound.nix -------------------------------------------------------------------------------- /modules/home/default/options/syncthing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/syncthing.nix -------------------------------------------------------------------------------- /modules/home/default/options/tmux/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/tmux/default.nix -------------------------------------------------------------------------------- /modules/home/default/options/tmux/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/tmux/tmux.conf -------------------------------------------------------------------------------- /modules/home/default/options/withings-sync.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/withings-sync.nix -------------------------------------------------------------------------------- /modules/home/default/options/yazi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/yazi.nix -------------------------------------------------------------------------------- /modules/home/default/options/zoxide.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/zoxide.nix -------------------------------------------------------------------------------- /modules/home/default/options/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/default/options/zsh.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/design.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/design.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/media.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/media.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/messages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/messages.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/productivity.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/productivity.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/programs.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/configs/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/configs/services.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/default.nix: -------------------------------------------------------------------------------- 1 | {...}: { 2 | imports = [./configs ./options]; 3 | desktop.enable = true; 4 | } 5 | -------------------------------------------------------------------------------- /modules/home/desktop/default/options/asana.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/asana.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/bluebubbles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/bluebubbles.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/chromium/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/chromium/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/chromium/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/chromium/lib.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/chromium/registry.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/chromium/registry.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/davinci-resolve/davinci-resolve-export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/davinci-resolve/davinci-resolve-export.sh -------------------------------------------------------------------------------- /modules/home/desktop/default/options/davinci-resolve/davinci-resolve-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/davinci-resolve/davinci-resolve-import.sh -------------------------------------------------------------------------------- /modules/home/desktop/default/options/davinci-resolve/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/davinci-resolve/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/dolphin-emu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/dolphin-emu.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/firefox/addons.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/firefox/addons.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/firefox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/firefox/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/flatpak.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/flatpak.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/freetube.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/freetube.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/fuzzel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/fuzzel.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/gimp.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/gimp.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/gmail.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/gmail.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/google-analytics.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/google-analytics.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/google-calendar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/google-calendar.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/google-meet.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/google-meet.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/harvest.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/harvest.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/home-assistant.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/home-assistant.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/immich.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/immich.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/imv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/imv.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/isy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/isy.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/jellyfin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/jellyfin.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/keyd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/keyd/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/keyd/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/keyd/lib.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/kitty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/kitty.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/localsend.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/localsend.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/mpv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/mpv.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/neomutt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/neomutt.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/onepassword.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/onepassword.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/projectm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/projectm.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/shotcut.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/shotcut.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/slack.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/slack.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/sparrow.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/sparrow.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/steam.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/telegram.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/telegram.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/wezterm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/wezterm.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/zathura.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/zathura.nix -------------------------------------------------------------------------------- /modules/home/desktop/default/options/zwift.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/default/options/zwift.nix -------------------------------------------------------------------------------- /modules/home/desktop/gnome/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/gnome/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/README.md -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/desktop-entries.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/desktop-entries.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/cursors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/cursors.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/floating.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/floating.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/fullscreen.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/fullscreen.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/graphics.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/graphics.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/groups.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/groups.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/hyprbars.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/hyprbars.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/hyprexpo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/hyprexpo.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/launchers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/launchers.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/main.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/main.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-button.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-button.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-float.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-float.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-floatorcycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-floatorcycle.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-movewindoworgrouporactive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-movewindoworgrouporactive.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-resizefloating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-resizefloating.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-supertab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-supertab.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-tileorsplit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-tileorsplit.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-togglefloating.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-togglefloating.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-togglefullscreenorhidden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-togglefullscreenorhidden.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-togglegrouporkill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-togglegrouporkill.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-togglegrouporlock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-togglegrouporlock.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-togglespecial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-togglespecial.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/scripts/hypr-toggletitlebars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/scripts/hypr-toggletitlebars.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/special.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/special.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/supertab.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/supertab.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/windows.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/windows.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypr/workspaces.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypr/workspaces.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hypridle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hypridle.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/hyprlock.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/kanshi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/kanshi.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/keyd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/keyd.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/mako.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/mako.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/mediactl.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/mediactl.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/nautilus.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/nautilus.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/printscreen.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/printscreen.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/programs.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/blezz.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/blezz.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/calc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/calc.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/clips.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/clips.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/emoji.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/emoji.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/launcher.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/launcher.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/scripts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/scripts/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/scripts/rofi-cliphist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/scripts/rofi-cliphist.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/scripts/rofi-hyprland.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/scripts/rofi-hyprland.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/scripts/rofi-sinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/scripts/rofi-sinks.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/scripts/rofi-toggle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/scripts/rofi-toggle.sh -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/sinks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/sinks.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/rofi/theme.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/rofi/theme.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/swaylock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/swaylock.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/swww.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/swww.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/waybar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/waybar/default.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/waybar/modules-center.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/waybar/modules-center.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/waybar/modules-left.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/waybar/modules-left.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/waybar/modules-right.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/waybar/modules-right.nix -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/waybar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/waybar/style.css -------------------------------------------------------------------------------- /modules/home/desktop/hyprland/wlogout.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/desktop/hyprland/wlogout.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/calendar.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/calendar.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/contact.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/contact.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/default.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/email-addresses.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/email-addresses.age -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/email-home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/email-home.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/email-work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/email-work.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/email.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/email.nix -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/password-fastmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/password-fastmail.age -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/password-gmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/password-gmail.age -------------------------------------------------------------------------------- /modules/home/users/jon/accounts/password-icloud.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/accounts/password-icloud.age -------------------------------------------------------------------------------- /modules/home/users/jon/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/default.nix -------------------------------------------------------------------------------- /modules/home/users/jon/git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/git-credentials.age -------------------------------------------------------------------------------- /modules/home/users/jon/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/git.nix -------------------------------------------------------------------------------- /modules/home/users/jon/mine.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/mine.nix -------------------------------------------------------------------------------- /modules/home/users/jon/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/programs.nix -------------------------------------------------------------------------------- /modules/home/users/jon/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/services.nix -------------------------------------------------------------------------------- /modules/home/users/jon/storage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/storage.nix -------------------------------------------------------------------------------- /modules/home/users/jon/terminal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/jon/terminal.nix -------------------------------------------------------------------------------- /modules/home/users/ness/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/ness/default.nix -------------------------------------------------------------------------------- /modules/home/users/ness/storage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/home/users/ness/storage.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/agenix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/agenix.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/disko.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/disko.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/docker.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/groups.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/groups.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/impermanence.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/impermanence.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/neovim.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/networking.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/networking.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/nix-index.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/nix-index.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/nix.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/nixpkgs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/nixpkgs.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/programs.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/security.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/services.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/storage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/storage.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/stylix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/stylix.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/tmpfiles.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/tmpfiles.nix -------------------------------------------------------------------------------- /modules/nixos/default/configs/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/configs/users.nix -------------------------------------------------------------------------------- /modules/nixos/default/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/arr/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/arr/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/arr/lidarr.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/arr/lidarr.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/arr/radarr.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/arr/radarr.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/arr/sabnzbd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/arr/sabnzbd.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/arr/sonarr.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/arr/sonarr.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/backblaze.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/backblaze.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/beszel/agent.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/beszel/agent.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/beszel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/beszel/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/beszel/hub.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/beszel/hub.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/blocky/blacklist.txt: -------------------------------------------------------------------------------- 1 | *.000space.com 2 | -------------------------------------------------------------------------------- /modules/nixos/default/options/blocky/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/blocky/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/blocky/whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/blocky/whitelist.txt -------------------------------------------------------------------------------- /modules/nixos/default/options/bluetooth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/bluetooth.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/btrbk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/btrbk.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/desktop.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/earlyoom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/earlyoom.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/freshrss/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/freshrss/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/freshrss/freshrss.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/freshrss/freshrss.age -------------------------------------------------------------------------------- /modules/nixos/default/options/garmin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/garmin.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/gitea/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/gitea/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/gitea/gitea.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/gitea/gitea.age -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/blocky-queries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/blocky-queries.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/blocky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/blocky.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/nodes.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/nut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/nut.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/smokeping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/smokeping.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/systemd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/systemd.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/unifi/aps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/unifi/aps.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/unifi/clients.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/unifi/clients.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/unifi/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/unifi/sites.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/unifi/switches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/unifi/switches.json -------------------------------------------------------------------------------- /modules/nixos/default/options/grafana/provisioning/zfs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/grafana/provisioning/zfs.json -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/configuration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/configuration.yaml -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/hass.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/hass.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/isy.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/isy.age -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/isy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/isy.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/home-assistant/zwave.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/home-assistant/zwave.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/immich.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/immich.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/jellyfin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/jellyfin.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/all.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/all.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/apple.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/apple.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/framework.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/framework.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/g600.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/g600.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/hhkb.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/hhkb.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/k811.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/k811.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/rii.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/rii.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/t480s.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/t480s.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/keyboards/w3.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/keyboards/w3.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/local-overrides.quirks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/local-overrides.quirks -------------------------------------------------------------------------------- /modules/nixos/default/options/keyd/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/keyd/monitor.sh -------------------------------------------------------------------------------- /modules/nixos/default/options/mpd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/mpd.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/mysql.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/mysql.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/nfs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/nfs.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/nginx.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/nginx.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/plex.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/plex.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/postgresql.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/postgresql.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/prometheus.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/prometheus.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/rsshub.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/rsshub.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/rust-motd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/rust-motd.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/syncthing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/syncthing.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/tailscale.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/tailscale.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/tandoor-recipes/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/tandoor-recipes/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/tandoor-recipes/tandoor-recipes.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/tandoor-recipes/tandoor-recipes.age -------------------------------------------------------------------------------- /modules/nixos/default/options/tautulli.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/tautulli.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/tiddlywiki.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/tiddlywiki.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/README.md -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/ca.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/ca.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/cloudflare.age -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/dns.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/dns.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/traefik/lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/traefik/lib.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/unifi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/unifi.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/whoami.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/whoami.nix -------------------------------------------------------------------------------- /modules/nixos/default/options/whoogle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/options/whoogle.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/firefox.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/misc.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/misc.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/nur.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/nur.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/nvf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/nvf/default.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/nvf/nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/nvf/nvf.age -------------------------------------------------------------------------------- /modules/nixos/default/overlays/self.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/self.nix -------------------------------------------------------------------------------- /modules/nixos/default/overlays/unstable.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/default/overlays/unstable.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/codecs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/configs/codecs.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/configs/default.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/configs/fonts.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/programs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/configs/programs.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/services.nix: -------------------------------------------------------------------------------- 1 | {...}: { 2 | # App Store 3 | services.flatpak.enable = true; 4 | } 5 | -------------------------------------------------------------------------------- /modules/nixos/desktop/default/configs/sound.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/configs/sound.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/default.nix: -------------------------------------------------------------------------------- 1 | {...}: { 2 | imports = [./configs ./options]; 3 | desktop.enable = true; 4 | } 5 | -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/chromium.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/chromium.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/default.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/dolphin-emu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/dolphin-emu.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/flatpak.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/flatpak.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/localsend.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/localsend.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/default/options/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/default/options/steam.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/gnome.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/gnome.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/homelab.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/homelab.nix -------------------------------------------------------------------------------- /modules/nixos/desktop/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/desktop/hyprland.nix -------------------------------------------------------------------------------- /modules/nixos/hardware/framework-11th-gen-intel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/hardware/framework-11th-gen-intel.nix -------------------------------------------------------------------------------- /modules/nixos/hardware/linode.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/hardware/linode.nix -------------------------------------------------------------------------------- /modules/nixos/hardware/radeon-rx-580.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/hardware/radeon-rx-580.nix -------------------------------------------------------------------------------- /modules/nixos/hardware/rtx-4070-ti-super.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/hardware/rtx-4070-ti-super.nix -------------------------------------------------------------------------------- /modules/nixos/hardware/vm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/modules/nixos/hardware/vm.nix -------------------------------------------------------------------------------- /packages/agenix/agenix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/agenix/agenix.sh -------------------------------------------------------------------------------- /packages/agenix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/agenix/default.nix -------------------------------------------------------------------------------- /packages/default.nix: -------------------------------------------------------------------------------- 1 | nixos/default.nix -------------------------------------------------------------------------------- /packages/derive/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/derive/default.nix -------------------------------------------------------------------------------- /packages/derive/derive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/derive/derive.sh -------------------------------------------------------------------------------- /packages/derive/hex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/derive/hex.py -------------------------------------------------------------------------------- /packages/derive/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/derive/ssh.py -------------------------------------------------------------------------------- /packages/docker-nvidia-smi.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/docker-nvidia-smi.nix -------------------------------------------------------------------------------- /packages/enableWayland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/enableWayland.nix -------------------------------------------------------------------------------- /packages/fetchgithub.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/fetchgithub.nix -------------------------------------------------------------------------------- /packages/ipaddr.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/ipaddr.nix -------------------------------------------------------------------------------- /packages/isy.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/isy.nix -------------------------------------------------------------------------------- /packages/mkApplication.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/mkApplication.nix -------------------------------------------------------------------------------- /packages/mkScript.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/mkScript.nix -------------------------------------------------------------------------------- /packages/mpd-url.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/mpd-url.nix -------------------------------------------------------------------------------- /packages/nixos/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/default.nix -------------------------------------------------------------------------------- /packages/nixos/nixos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/nixos.sh -------------------------------------------------------------------------------- /packages/nixos/templates/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/templates/configuration.nix -------------------------------------------------------------------------------- /packages/nixos/templates/disk-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/templates/disk-configuration.nix -------------------------------------------------------------------------------- /packages/nixos/templates/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/templates/hardware-configuration.nix -------------------------------------------------------------------------------- /packages/nixos/templates/home.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/templates/home.nix -------------------------------------------------------------------------------- /packages/nixos/templates/user.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/nixos/templates/user.nix -------------------------------------------------------------------------------- /packages/qr.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/qr.nix -------------------------------------------------------------------------------- /packages/shizuku.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/shizuku.nix -------------------------------------------------------------------------------- /packages/sshed/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/sshed/default.nix -------------------------------------------------------------------------------- /packages/sshed/sshed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/sshed/sshed.sh -------------------------------------------------------------------------------- /packages/sv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/sv.nix -------------------------------------------------------------------------------- /packages/wrapWithFlags.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/wrapWithFlags.nix -------------------------------------------------------------------------------- /packages/zwift.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/packages/zwift.nix -------------------------------------------------------------------------------- /secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/README.md -------------------------------------------------------------------------------- /secrets/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/default.nix -------------------------------------------------------------------------------- /secrets/hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/hex.age -------------------------------------------------------------------------------- /secrets/home/cog-jon/13d6a2287424ce33fe718bf2b26acf57-icloud.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/cog-jon/13d6a2287424ce33fe718bf2b26acf57-icloud.age -------------------------------------------------------------------------------- /secrets/home/cog-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/cog-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/cog-jon/5f7cdffb2756041796218512731ebd11-addresses.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/cog-jon/5f7cdffb2756041796218512731ebd11-addresses.age -------------------------------------------------------------------------------- /secrets/home/cog-jon/bc384bd508ce60756e1bb14de78e6644-fastmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/cog-jon/bc384bd508ce60756e1bb14de78e6644-fastmail.age -------------------------------------------------------------------------------- /secrets/home/cog-jon/fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/cog-jon/fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age -------------------------------------------------------------------------------- /secrets/home/eve-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/eve-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/fit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/fit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/hub-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/hub-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/13d6a2287424ce33fe718bf2b26acf57-icloud.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/13d6a2287424ce33fe718bf2b26acf57-icloud.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/5f7cdffb2756041796218512731ebd11-addresses.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/5f7cdffb2756041796218512731ebd11-addresses.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/bc384bd508ce60756e1bb14de78e6644-fastmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/bc384bd508ce60756e1bb14de78e6644-fastmail.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/c41a6ce86ebc40383ecc7e4bc442d5b6-withings-sync.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/c41a6ce86ebc40383ecc7e4bc442d5b6-withings-sync.age -------------------------------------------------------------------------------- /secrets/home/kit-jon/fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/kit-jon/fa9a8f38d50238f700d5bfab8d78d2c0-gmail.age -------------------------------------------------------------------------------- /secrets/home/lux-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/lux-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/sim-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/sim-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/home/wit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/home/wit-jon/16a0e6c1c621952c0ac855ae9371f816-git-credentials.age -------------------------------------------------------------------------------- /secrets/id_age.pub: -------------------------------------------------------------------------------- 1 | age1s2leywugfugxdqc233w6hshzw066cjws0q3yhdnu6khzfmye4y2s544jcn 2 | -------------------------------------------------------------------------------- /secrets/nixos/cog/05042fc409b321d6bffa51259729525f-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/05042fc409b321d6bffa51259729525f-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/cog/1257f7a03c6157a670f86aa65e8c2003-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/1257f7a03c6157a670f86aa65e8c2003-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/cog/1b9676b6d210e90752464d5be6f1c5df-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/1b9676b6d210e90752464d5be6f1c5df-ca.age -------------------------------------------------------------------------------- /secrets/nixos/cog/99ace010b1f196cf4438963dbf0884be-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/99ace010b1f196cf4438963dbf0884be-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/cog/bb6b80d9ab3a1e0dcf79c454dd497df7-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/bb6b80d9ab3a1e0dcf79c454dd497df7-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/cog/c8d86144084464b7a6e6fd6473aec30e-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/c8d86144084464b7a6e6fd6473aec30e-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/cog/ce380c3192d96d44e8617c0f0dcfee4b-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/ce380c3192d96d44e8617c0f0dcfee4b-hex.age -------------------------------------------------------------------------------- /secrets/nixos/cog/ce7fd49a1c5fb7aebf157ebb12e21ea0-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/ce7fd49a1c5fb7aebf157ebb12e21ea0-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/cog/e974c96e03a7ce94d0e45a4b0658b299-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/cog/e974c96e03a7ce94d0e45a4b0658b299-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/eve/0d352c0d6425469cfb2bbb086fdb394d-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/0d352c0d6425469cfb2bbb086fdb394d-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/eve/5717cf320426005378d713c073fe6c94-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/5717cf320426005378d713c073fe6c94-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/eve/73bc7cf16f98c1b1f2adf17e81c8653c-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/73bc7cf16f98c1b1f2adf17e81c8653c-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/eve/b673f161973e2e3fcdbd3fe7393adc52-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/b673f161973e2e3fcdbd3fe7393adc52-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/eve/c4b0001d7888b122054221a32b33384e-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/c4b0001d7888b122054221a32b33384e-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/eve/c83b08920ebb8f3efaac2a9ac0ff3b67-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/c83b08920ebb8f3efaac2a9ac0ff3b67-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/eve/e0e25b647a691b5ae303043625f1eae1-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/e0e25b647a691b5ae303043625f1eae1-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/eve/e2aa0870ddbb9056daaed90fa5173751-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/e2aa0870ddbb9056daaed90fa5173751-hex.age -------------------------------------------------------------------------------- /secrets/nixos/eve/f2faf221e281b10433e3354e08075aea-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/eve/f2faf221e281b10433e3354e08075aea-ca.age -------------------------------------------------------------------------------- /secrets/nixos/fit/128c15c5d2345a97d7bb10959a4cb754-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/128c15c5d2345a97d7bb10959a4cb754-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/fit/30ca492b4d6939875230d0b3e332b993-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/30ca492b4d6939875230d0b3e332b993-ca.age -------------------------------------------------------------------------------- /secrets/nixos/fit/3f28af14b7e08f6ea0c8cd0e76cc4192-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/3f28af14b7e08f6ea0c8cd0e76cc4192-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/fit/56c289c1fe7ab557c2cd4b7e5fa73053-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/56c289c1fe7ab557c2cd4b7e5fa73053-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/fit/6c0eac15697d46e817d7a100f381070e-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/6c0eac15697d46e817d7a100f381070e-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/fit/ae8f077423f6ece77c456304a68edc64-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/ae8f077423f6ece77c456304a68edc64-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/fit/b5b1fce2db48854a03eaced8b7157a56-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/b5b1fce2db48854a03eaced8b7157a56-hex.age -------------------------------------------------------------------------------- /secrets/nixos/fit/d0e5058b382d25a07428be62cf97c38d-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/d0e5058b382d25a07428be62cf97c38d-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/fit/d2787887eed4ac3083b0f2f8193aeb98-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/fit/d2787887eed4ac3083b0f2f8193aeb98-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/hub/0063d939e50c47f4feec6c02927bb80c-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/0063d939e50c47f4feec6c02927bb80c-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/hub/027bb9d20ecaf5718821a70c5efd5ff3-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/027bb9d20ecaf5718821a70c5efd5ff3-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/hub/383198f39f2954a38f5ec51614d731fb-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/383198f39f2954a38f5ec51614d731fb-hex.age -------------------------------------------------------------------------------- /secrets/nixos/hub/3aadc745304eef90d2207e27bc288bfb-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/3aadc745304eef90d2207e27bc288bfb-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/hub/4d8e0e6f6d90f675853f79292ad1f237-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/4d8e0e6f6d90f675853f79292ad1f237-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/hub/612ff83e610bdf4988fee8026d6d2afe-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/612ff83e610bdf4988fee8026d6d2afe-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/hub/90c3ce68a4d9e6b86f7d2aa172643bc1-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/90c3ce68a4d9e6b86f7d2aa172643bc1-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/hub/959207e604a412ef80c8e5be2dafade8-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/959207e604a412ef80c8e5be2dafade8-ca.age -------------------------------------------------------------------------------- /secrets/nixos/hub/d67b839920e8e0372fec5e9e4d54e713-isy.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/d67b839920e8e0372fec5e9e4d54e713-isy.age -------------------------------------------------------------------------------- /secrets/nixos/hub/ea2aa68bfb24f71bdf5c01483c97bee9-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/hub/ea2aa68bfb24f71bdf5c01483c97bee9-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/kit/018d2ad37350709578daeb8df8ac561d-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/018d2ad37350709578daeb8df8ac561d-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/kit/184c84896dcc7ebc2bb44bc2536c9d63-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/184c84896dcc7ebc2bb44bc2536c9d63-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/kit/1ad26efa68effbe856f9cd78449fdf35-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/1ad26efa68effbe856f9cd78449fdf35-ca.age -------------------------------------------------------------------------------- /secrets/nixos/kit/2a5c0d08cc5c40b8f9f86a46c495fa3e-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/2a5c0d08cc5c40b8f9f86a46c495fa3e-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/kit/2bcc7f438125cf9a5194278c077375f4-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/2bcc7f438125cf9a5194278c077375f4-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/kit/5fb214185ab97108a3f578afb8ba437d-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/5fb214185ab97108a3f578afb8ba437d-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/kit/cd061829ddadf03ce674e67f9a12b0c3-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/cd061829ddadf03ce674e67f9a12b0c3-hex.age -------------------------------------------------------------------------------- /secrets/nixos/kit/e3eca8f972857d7eab593f76ae37f5bf-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/e3eca8f972857d7eab593f76ae37f5bf-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/kit/f6cb4adfb31d16acfa84cd18548b3cea-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/kit/f6cb4adfb31d16acfa84cd18548b3cea-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/lux/63e865959eb6b472c1a8e86090485d4d-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/63e865959eb6b472c1a8e86090485d4d-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/lux/66fa236a54ae8bde35ca9c25468821a6-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/66fa236a54ae8bde35ca9c25468821a6-hex.age -------------------------------------------------------------------------------- /secrets/nixos/lux/90cd5a28cba49cb9522ce9972cb5d15b-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/90cd5a28cba49cb9522ce9972cb5d15b-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/lux/a34055de7d43a00640e30be986e2cad9-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/a34055de7d43a00640e30be986e2cad9-ca.age -------------------------------------------------------------------------------- /secrets/nixos/lux/abed9561e1d0c98da638c15bdf3a4f3c-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/abed9561e1d0c98da638c15bdf3a4f3c-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/lux/ac59b84bea412b0a9e297d1a89851595-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/ac59b84bea412b0a9e297d1a89851595-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/lux/b0709e25b52a919e01d50b70d4321677-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/b0709e25b52a919e01d50b70d4321677-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/lux/d1e280114c952a3b0350e3826f522401-gitea.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/d1e280114c952a3b0350e3826f522401-gitea.age -------------------------------------------------------------------------------- /secrets/nixos/lux/ed6be4a768421b5d5b93792f2499fca9-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/ed6be4a768421b5d5b93792f2499fca9-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/lux/ff4bd4962e59fe610caf8781b4e91334-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/lux/ff4bd4962e59fe610caf8781b4e91334-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/sim/029dbf371cf4b06b6c792ee2e0c16405-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/029dbf371cf4b06b6c792ee2e0c16405-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/sim/08ca44ad6aede1aeb27972e9f547745b-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/08ca44ad6aede1aeb27972e9f547745b-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/sim/43b6e185e25c1472aba47f99325c88f0-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/43b6e185e25c1472aba47f99325c88f0-hex.age -------------------------------------------------------------------------------- /secrets/nixos/sim/60fe32a1205480917ed2c6143f9b9853-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/60fe32a1205480917ed2c6143f9b9853-beszel-password.age -------------------------------------------------------------------------------- /secrets/nixos/sim/700ee5ea1cc718758026d50c202cf1fd-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/700ee5ea1cc718758026d50c202cf1fd-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/sim/7ce2870222deffe90bb42fc268f01664-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/7ce2870222deffe90bb42fc268f01664-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/sim/85608ad12bef1df680964cf56f3eee03-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/85608ad12bef1df680964cf56f3eee03-ca.age -------------------------------------------------------------------------------- /secrets/nixos/sim/8e2664a83c157ff9d9177c3a91a2ae5b-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/8e2664a83c157ff9d9177c3a91a2ae5b-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/sim/f7b1d0b59fa69b02393ee18e4ddada2f-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/sim/f7b1d0b59fa69b02393ee18e4ddada2f-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/wit/01210b2909ceb7847af7de8755228ec2-jon-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/01210b2909ceb7847af7de8755228ec2-jon-password.age -------------------------------------------------------------------------------- /secrets/nixos/wit/03bef144b13d79d0b1e9006a90389ab0-ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/03bef144b13d79d0b1e9006a90389ab0-ca.age -------------------------------------------------------------------------------- /secrets/nixos/wit/07dfceb8d2defc8620bb75d8bae96e00-ness-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/07dfceb8d2defc8620bb75d8bae96e00-ness-password.age -------------------------------------------------------------------------------- /secrets/nixos/wit/0a87d9f804fda1f28409c5fbcce2afe1-btrbk-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/0a87d9f804fda1f28409c5fbcce2afe1-btrbk-password.age -------------------------------------------------------------------------------- /secrets/nixos/wit/1969619886755ebbeecb9264e696c4f4-cloudflare.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/1969619886755ebbeecb9264e696c4f4-cloudflare.age -------------------------------------------------------------------------------- /secrets/nixos/wit/715998ed49179dca354f358a1b2bf125-root-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/715998ed49179dca354f358a1b2bf125-root-password.age -------------------------------------------------------------------------------- /secrets/nixos/wit/a2e62f7e222bd51c04d555b073c6c05d-hex.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/a2e62f7e222bd51c04d555b073c6c05d-hex.age -------------------------------------------------------------------------------- /secrets/nixos/wit/c289be6399a0e7b6606254410f85391e-nvf.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/c289be6399a0e7b6606254410f85391e-nvf.age -------------------------------------------------------------------------------- /secrets/nixos/wit/f7b876b674771f6aa5c2e2cc12a40bd3-beszel-password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/secrets/nixos/wit/f7b876b674771f6aa5c2e2cc12a40bd3-beszel-password.age -------------------------------------------------------------------------------- /users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/README.md -------------------------------------------------------------------------------- /users/beszel/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/beszel/default.nix -------------------------------------------------------------------------------- /users/beszel/id_age.pub: -------------------------------------------------------------------------------- 1 | age1adyrlupnwcwue8tqrrwmrhd2jgfc00gccyn07mygt598u4xmcgksuzza60 2 | -------------------------------------------------------------------------------- /users/beszel/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/beszel/id_ed25519.pub -------------------------------------------------------------------------------- /users/beszel/password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/beszel/password.age -------------------------------------------------------------------------------- /users/btrbk/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/btrbk/default.nix -------------------------------------------------------------------------------- /users/btrbk/id_age.pub: -------------------------------------------------------------------------------- 1 | age1stlqus5wrgjzc0vlgeffrh4hmprmmvyjq806zyy5at8vfg2jesms6f26u5 2 | -------------------------------------------------------------------------------- /users/btrbk/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/btrbk/id_ed25519.pub -------------------------------------------------------------------------------- /users/btrbk/password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/btrbk/password.age -------------------------------------------------------------------------------- /users/jon/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/jon/default.nix -------------------------------------------------------------------------------- /users/jon/id_age.pub: -------------------------------------------------------------------------------- 1 | age18d958z4nd5y6g8yt6v4jwxk5wr05ztdd7rgyvpqg6lgwnd3x7s0syjh2jt 2 | -------------------------------------------------------------------------------- /users/jon/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/jon/id_ed25519.pub -------------------------------------------------------------------------------- /users/jon/password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/jon/password.age -------------------------------------------------------------------------------- /users/ness/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/ness/default.nix -------------------------------------------------------------------------------- /users/ness/id_age.pub: -------------------------------------------------------------------------------- 1 | age1kq9hjzvljd8d2zdq2e74200zuz5d533328k6u3t8t03c38wcreyqra2hjh 2 | -------------------------------------------------------------------------------- /users/ness/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/ness/id_ed25519.pub -------------------------------------------------------------------------------- /users/ness/password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/ness/password.age -------------------------------------------------------------------------------- /users/root/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/root/default.nix -------------------------------------------------------------------------------- /users/root/id_age.pub: -------------------------------------------------------------------------------- 1 | age1aqsgua72hfvemrpfk55dysjr7e55tzy59vrzngc0rw456hdp6ghsgasmys 2 | -------------------------------------------------------------------------------- /users/root/id_ed25519.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/root/id_ed25519.pub -------------------------------------------------------------------------------- /users/root/password.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/users/root/password.age -------------------------------------------------------------------------------- /zones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/README.md -------------------------------------------------------------------------------- /zones/ca.age: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/ca.age -------------------------------------------------------------------------------- /zones/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/ca.crt -------------------------------------------------------------------------------- /zones/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/default.nix -------------------------------------------------------------------------------- /zones/home/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/home/README.md -------------------------------------------------------------------------------- /zones/home/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/home/default.nix -------------------------------------------------------------------------------- /zones/nest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/nest/README.md -------------------------------------------------------------------------------- /zones/nest/default.nix: -------------------------------------------------------------------------------- 1 | { 2 | # Nest network: ASUS RT-AC66U 3 | rt = "10.3.0.1"; 4 | } 5 | -------------------------------------------------------------------------------- /zones/tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/tail/README.md -------------------------------------------------------------------------------- /zones/tail/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/tail/default.nix -------------------------------------------------------------------------------- /zones/work/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/work/README.md -------------------------------------------------------------------------------- /zones/work/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suderman/nixos/HEAD/zones/work/default.nix --------------------------------------------------------------------------------