├── .envrc ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build-packages.yml │ └── update-hash.yml ├── .gitignore ├── .gitsecret ├── keys │ ├── pubring.kbx │ ├── pubring.kbx~ │ └── trustdb.gpg └── paths │ └── mapping.cfg ├── .nixd.json ├── .vscode ├── settings.json └── tasks.json ├── LICENSE.md ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── home ├── configurations │ ├── _options.nix │ ├── custom.nix │ └── weathercold │ │ ├── _base.nix.secret │ │ ├── nixos-disk.nix │ │ ├── nixos-fwdesktop.nix │ │ ├── nixos-fwlaptop.nix │ │ ├── nixos-inspiron.nix │ │ └── nixos-redmibook.nix ├── flake-module.nix ├── flake.lock ├── flake.nix └── modules │ ├── accounts │ └── email.nix │ ├── i18n │ └── input-method │ │ └── fcitx5.nix │ ├── profiles │ ├── base.nix │ ├── build-config.nix │ ├── full.nix │ ├── hyprland.nix │ └── niri.nix │ ├── programs │ ├── btop.nix │ ├── carapace.nix │ ├── direnv.nix │ ├── dotdrop.nix │ ├── firefox.nix │ ├── fish.nix │ ├── foot.nix │ ├── git.nix │ ├── helix.nix │ ├── hyprlock.nix │ ├── jujutsu.nix │ ├── nushell.nix │ ├── thunderbird.nix │ ├── wayland │ │ ├── hyprland.nix │ │ └── niri.nix │ ├── yazi │ │ ├── default.nix │ │ ├── keymap.toml │ │ └── yazi.toml │ ├── zoxide.nix │ └── zsh.nix │ ├── services │ ├── desktop-managers │ │ └── plasma6.nix │ ├── gpg-agent.nix │ ├── scheduling │ │ └── darkman.nix │ └── wayland │ │ └── hypridle.nix │ └── themes │ ├── base │ ├── cursors.nix │ ├── fastfetch │ │ ├── config.json │ │ └── default.nix │ ├── firefox-vertical-tabs │ │ ├── default.nix │ │ ├── lock.json │ │ ├── update-shell.nix │ │ └── update.sh │ ├── foot.nix │ ├── ghostty.nix │ ├── hyprland-dynamic-cursors.nix │ ├── nushell.nix │ └── starship.nix │ ├── catppuccin │ ├── cursors.nix │ ├── discord.nix │ ├── fcitx5.nix │ ├── fonts.nix │ ├── foot.nix │ ├── ghostty.nix │ ├── gtk.nix │ ├── hyprland.nix │ ├── hyprpaper │ │ ├── _options.nix │ │ ├── nixos-logo.nix │ │ ├── xppen-chan.nix │ │ └── xppen-chan.png │ ├── niri.nix │ └── plasma6.nix │ └── colloid │ ├── fcitx5.nix │ ├── firefox.nix │ ├── fonts.nix │ ├── gtk.nix │ └── plasma6.nix ├── lib ├── default.nix ├── flake-module.nix ├── flake.lock ├── flake.nix ├── haumea │ ├── LICENSE │ ├── default.nix │ └── src │ │ ├── __parsePath.nix │ │ ├── load.nix │ │ ├── loadEvalTests.nix │ │ ├── loaders │ │ ├── __defaultWith.nix │ │ ├── callPackage.nix │ │ ├── default.nix │ │ ├── path.nix │ │ ├── scoped.nix │ │ └── verbatim.nix │ │ ├── matchers │ │ ├── always.nix │ │ ├── extension.nix │ │ ├── json.nix │ │ ├── nix.nix │ │ ├── regex.nix │ │ └── toml.nix │ │ └── transformers │ │ ├── __utils │ │ └── concatMapAttrsWith.nix │ │ ├── hoistAttrs.nix │ │ ├── hoistLists.nix │ │ ├── liftDefault.nix │ │ └── prependUnderscore.nix ├── modules │ ├── config │ │ └── abszero.nix │ └── themes │ │ └── catppuccin │ │ ├── catppuccin.nix │ │ └── palette.json └── src │ ├── attrsets.nix │ ├── filesystem.nix │ ├── modules.nix │ ├── partials.nix │ ├── strings.nix │ └── trivial.nix ├── nixos ├── configurations │ ├── _options.nix │ ├── fracture-ray │ │ ├── default.nix │ │ └── proxy.json.secret │ ├── nixos-disk.nix │ ├── nixos-fwdesktop.nix │ ├── nixos-fwlaptop.nix │ ├── nixos-inspiron.nix │ └── nixos-redmibook.nix ├── flake-module.nix ├── flake.lock ├── flake.nix └── modules │ ├── config │ ├── users.nix │ └── zram.nix │ ├── hardware │ ├── dell-inspiron-7405.nix │ ├── framework-12-13th-gen-intel.nix │ ├── framework-desktop-amd-ai-max-300-series.nix │ ├── keyboard │ │ └── halo65.nix │ ├── vultr-cc-intel-regular.nix │ └── xiaomi-redmibook-16-pro-2024.nix │ ├── i18n │ └── input-method │ │ └── fcitx5.nix │ ├── profiles │ ├── base.nix │ ├── desktop.nix │ ├── graphical-full.nix │ ├── graphical.nix │ ├── laptop.nix │ └── server.nix │ ├── programs │ ├── neovim.nix │ ├── pot.nix │ ├── steam.nix │ ├── wayland │ │ ├── hyprland.nix │ │ └── niri.nix │ └── wireshark.nix │ ├── services │ ├── desktop-managers │ │ └── plasma6.nix │ ├── desktops │ │ └── pipewire.nix │ ├── display-managers │ │ ├── sddm.nix │ │ └── tuigreet.nix │ ├── hardware │ │ └── kanata.nix │ ├── networking │ │ ├── ssh │ │ │ └── sshd.nix │ │ ├── v2raya.nix │ │ ├── wpa_supplicant.nix │ │ └── xray │ │ │ ├── blackhole-adblock.nix │ │ │ ├── default.nix │ │ │ ├── vless-tcp-xtls-reality-client.nix │ │ │ └── vless-tcp-xtls-reality-server.nix │ ├── printing │ │ └── cupsd.nix │ └── rclone │ │ ├── default.nix │ │ └── file-systems.nix.secret │ ├── system │ └── boot │ │ ├── lanzaboote │ │ ├── default.nix │ │ └── pki │ │ │ ├── GUID │ │ │ └── keys │ │ │ ├── KEK │ │ │ ├── KEK.key.secret │ │ │ └── KEK.pem │ │ │ ├── PK │ │ │ ├── PK.key.secret │ │ │ └── PK.pem │ │ │ └── db │ │ │ ├── db.key.secret │ │ │ └── db.pem │ │ ├── plymouth.nix │ │ └── quiet.nix │ ├── themes │ ├── base │ │ └── plymouth-rings_2.nix │ └── catppuccin │ │ ├── fonts.nix │ │ ├── plymouth.nix │ │ └── sddm.nix │ └── virtualisation │ ├── act.nix │ ├── docker.nix │ └── libvirtd.nix ├── nur.nix ├── pkgs ├── an │ ├── anki-bin-wayland │ │ └── package.nix │ └── anki-wayland │ │ └── package.nix ├── ca │ ├── catppuccin-discord-git │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh │ └── catppuccin-wallpapers │ │ └── package.nix ├── co │ └── colloid-gtk-theme-git │ │ ├── lock.json │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh ├── default.nix ├── flake-module.nix ├── flake.lock ├── flake.nix ├── io │ └── iosevka-inconsolata │ │ └── package.nix ├── no │ └── noita_save_manager │ │ └── package.nix ├── nu │ └── nu_scripts-git │ │ ├── lock.json │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh ├── pa │ └── palgen │ │ └── package.nix ├── v2 │ └── v2ray-rules-dat │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh ├── vs │ ├── vscode-insiders │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh │ └── vscodium-insiders │ │ ├── package.nix │ │ ├── update-shell.nix │ │ └── update.sh └── wi │ └── win2xcur │ └── package.nix └── shell.nix /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.github/workflows/build-packages.yml -------------------------------------------------------------------------------- /.github/workflows/update-hash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.github/workflows/update-hash.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitsecret/keys/pubring.kbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitsecret/keys/pubring.kbx -------------------------------------------------------------------------------- /.gitsecret/keys/pubring.kbx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitsecret/keys/pubring.kbx~ -------------------------------------------------------------------------------- /.gitsecret/keys/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitsecret/keys/trustdb.gpg -------------------------------------------------------------------------------- /.gitsecret/paths/mapping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.gitsecret/paths/mapping.cfg -------------------------------------------------------------------------------- /.nixd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.nixd.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/flake.nix -------------------------------------------------------------------------------- /home/configurations/_options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/_options.nix -------------------------------------------------------------------------------- /home/configurations/custom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/custom.nix -------------------------------------------------------------------------------- /home/configurations/weathercold/_base.nix.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/_base.nix.secret -------------------------------------------------------------------------------- /home/configurations/weathercold/nixos-disk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/nixos-disk.nix -------------------------------------------------------------------------------- /home/configurations/weathercold/nixos-fwdesktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/nixos-fwdesktop.nix -------------------------------------------------------------------------------- /home/configurations/weathercold/nixos-fwlaptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/nixos-fwlaptop.nix -------------------------------------------------------------------------------- /home/configurations/weathercold/nixos-inspiron.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/nixos-inspiron.nix -------------------------------------------------------------------------------- /home/configurations/weathercold/nixos-redmibook.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/configurations/weathercold/nixos-redmibook.nix -------------------------------------------------------------------------------- /home/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/flake-module.nix -------------------------------------------------------------------------------- /home/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/flake.lock -------------------------------------------------------------------------------- /home/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/flake.nix -------------------------------------------------------------------------------- /home/modules/accounts/email.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/accounts/email.nix -------------------------------------------------------------------------------- /home/modules/i18n/input-method/fcitx5.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/i18n/input-method/fcitx5.nix -------------------------------------------------------------------------------- /home/modules/profiles/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/profiles/base.nix -------------------------------------------------------------------------------- /home/modules/profiles/build-config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/profiles/build-config.nix -------------------------------------------------------------------------------- /home/modules/profiles/full.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/profiles/full.nix -------------------------------------------------------------------------------- /home/modules/profiles/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/profiles/hyprland.nix -------------------------------------------------------------------------------- /home/modules/profiles/niri.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/profiles/niri.nix -------------------------------------------------------------------------------- /home/modules/programs/btop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/btop.nix -------------------------------------------------------------------------------- /home/modules/programs/carapace.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/carapace.nix -------------------------------------------------------------------------------- /home/modules/programs/direnv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/direnv.nix -------------------------------------------------------------------------------- /home/modules/programs/dotdrop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/dotdrop.nix -------------------------------------------------------------------------------- /home/modules/programs/firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/firefox.nix -------------------------------------------------------------------------------- /home/modules/programs/fish.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/fish.nix -------------------------------------------------------------------------------- /home/modules/programs/foot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/foot.nix -------------------------------------------------------------------------------- /home/modules/programs/git.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/git.nix -------------------------------------------------------------------------------- /home/modules/programs/helix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/helix.nix -------------------------------------------------------------------------------- /home/modules/programs/hyprlock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/hyprlock.nix -------------------------------------------------------------------------------- /home/modules/programs/jujutsu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/jujutsu.nix -------------------------------------------------------------------------------- /home/modules/programs/nushell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/nushell.nix -------------------------------------------------------------------------------- /home/modules/programs/thunderbird.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/thunderbird.nix -------------------------------------------------------------------------------- /home/modules/programs/wayland/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/wayland/hyprland.nix -------------------------------------------------------------------------------- /home/modules/programs/wayland/niri.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/wayland/niri.nix -------------------------------------------------------------------------------- /home/modules/programs/yazi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/yazi/default.nix -------------------------------------------------------------------------------- /home/modules/programs/yazi/keymap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/yazi/keymap.toml -------------------------------------------------------------------------------- /home/modules/programs/yazi/yazi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/yazi/yazi.toml -------------------------------------------------------------------------------- /home/modules/programs/zoxide.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/zoxide.nix -------------------------------------------------------------------------------- /home/modules/programs/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/programs/zsh.nix -------------------------------------------------------------------------------- /home/modules/services/desktop-managers/plasma6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/services/desktop-managers/plasma6.nix -------------------------------------------------------------------------------- /home/modules/services/gpg-agent.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/services/gpg-agent.nix -------------------------------------------------------------------------------- /home/modules/services/scheduling/darkman.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/services/scheduling/darkman.nix -------------------------------------------------------------------------------- /home/modules/services/wayland/hypridle.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/services/wayland/hypridle.nix -------------------------------------------------------------------------------- /home/modules/themes/base/cursors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/cursors.nix -------------------------------------------------------------------------------- /home/modules/themes/base/fastfetch/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/fastfetch/config.json -------------------------------------------------------------------------------- /home/modules/themes/base/fastfetch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/fastfetch/default.nix -------------------------------------------------------------------------------- /home/modules/themes/base/firefox-vertical-tabs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/firefox-vertical-tabs/default.nix -------------------------------------------------------------------------------- /home/modules/themes/base/firefox-vertical-tabs/lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /home/modules/themes/base/firefox-vertical-tabs/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/firefox-vertical-tabs/update-shell.nix -------------------------------------------------------------------------------- /home/modules/themes/base/firefox-vertical-tabs/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/firefox-vertical-tabs/update.sh -------------------------------------------------------------------------------- /home/modules/themes/base/foot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/foot.nix -------------------------------------------------------------------------------- /home/modules/themes/base/ghostty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/ghostty.nix -------------------------------------------------------------------------------- /home/modules/themes/base/hyprland-dynamic-cursors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/hyprland-dynamic-cursors.nix -------------------------------------------------------------------------------- /home/modules/themes/base/nushell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/nushell.nix -------------------------------------------------------------------------------- /home/modules/themes/base/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/base/starship.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/cursors.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/cursors.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/discord.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/discord.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/fcitx5.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/fcitx5.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/fonts.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/foot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/foot.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/ghostty.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/ghostty.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/gtk.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/hyprland.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/hyprpaper/_options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/hyprpaper/_options.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/hyprpaper/nixos-logo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/hyprpaper/nixos-logo.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/hyprpaper/xppen-chan.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/hyprpaper/xppen-chan.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/hyprpaper/xppen-chan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/hyprpaper/xppen-chan.png -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/niri.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/niri.nix -------------------------------------------------------------------------------- /home/modules/themes/catppuccin/plasma6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/catppuccin/plasma6.nix -------------------------------------------------------------------------------- /home/modules/themes/colloid/fcitx5.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/colloid/fcitx5.nix -------------------------------------------------------------------------------- /home/modules/themes/colloid/firefox.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/colloid/firefox.nix -------------------------------------------------------------------------------- /home/modules/themes/colloid/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/colloid/fonts.nix -------------------------------------------------------------------------------- /home/modules/themes/colloid/gtk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/colloid/gtk.nix -------------------------------------------------------------------------------- /home/modules/themes/colloid/plasma6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/home/modules/themes/colloid/plasma6.nix -------------------------------------------------------------------------------- /lib/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/default.nix -------------------------------------------------------------------------------- /lib/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/flake-module.nix -------------------------------------------------------------------------------- /lib/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/flake.lock -------------------------------------------------------------------------------- /lib/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/flake.nix -------------------------------------------------------------------------------- /lib/haumea/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/LICENSE -------------------------------------------------------------------------------- /lib/haumea/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/default.nix -------------------------------------------------------------------------------- /lib/haumea/src/__parsePath.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/__parsePath.nix -------------------------------------------------------------------------------- /lib/haumea/src/load.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/load.nix -------------------------------------------------------------------------------- /lib/haumea/src/loadEvalTests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loadEvalTests.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/__defaultWith.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loaders/__defaultWith.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/callPackage.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loaders/callPackage.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loaders/default.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/path.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loaders/path.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/scoped.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/loaders/scoped.nix -------------------------------------------------------------------------------- /lib/haumea/src/loaders/verbatim.nix: -------------------------------------------------------------------------------- 1 | _: 2 | 3 | _: 4 | import 5 | -------------------------------------------------------------------------------- /lib/haumea/src/matchers/always.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/always.nix -------------------------------------------------------------------------------- /lib/haumea/src/matchers/extension.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/extension.nix -------------------------------------------------------------------------------- /lib/haumea/src/matchers/json.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/json.nix -------------------------------------------------------------------------------- /lib/haumea/src/matchers/nix.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/nix.nix -------------------------------------------------------------------------------- /lib/haumea/src/matchers/regex.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/regex.nix -------------------------------------------------------------------------------- /lib/haumea/src/matchers/toml.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/matchers/toml.nix -------------------------------------------------------------------------------- /lib/haumea/src/transformers/__utils/concatMapAttrsWith.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/transformers/__utils/concatMapAttrsWith.nix -------------------------------------------------------------------------------- /lib/haumea/src/transformers/hoistAttrs.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/transformers/hoistAttrs.nix -------------------------------------------------------------------------------- /lib/haumea/src/transformers/hoistLists.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/transformers/hoistLists.nix -------------------------------------------------------------------------------- /lib/haumea/src/transformers/liftDefault.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/transformers/liftDefault.nix -------------------------------------------------------------------------------- /lib/haumea/src/transformers/prependUnderscore.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/haumea/src/transformers/prependUnderscore.nix -------------------------------------------------------------------------------- /lib/modules/config/abszero.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/modules/config/abszero.nix -------------------------------------------------------------------------------- /lib/modules/themes/catppuccin/catppuccin.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/modules/themes/catppuccin/catppuccin.nix -------------------------------------------------------------------------------- /lib/modules/themes/catppuccin/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/modules/themes/catppuccin/palette.json -------------------------------------------------------------------------------- /lib/src/attrsets.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/attrsets.nix -------------------------------------------------------------------------------- /lib/src/filesystem.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/filesystem.nix -------------------------------------------------------------------------------- /lib/src/modules.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/modules.nix -------------------------------------------------------------------------------- /lib/src/partials.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/partials.nix -------------------------------------------------------------------------------- /lib/src/strings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/strings.nix -------------------------------------------------------------------------------- /lib/src/trivial.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/lib/src/trivial.nix -------------------------------------------------------------------------------- /nixos/configurations/_options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/_options.nix -------------------------------------------------------------------------------- /nixos/configurations/fracture-ray/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/fracture-ray/default.nix -------------------------------------------------------------------------------- /nixos/configurations/fracture-ray/proxy.json.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/fracture-ray/proxy.json.secret -------------------------------------------------------------------------------- /nixos/configurations/nixos-disk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/nixos-disk.nix -------------------------------------------------------------------------------- /nixos/configurations/nixos-fwdesktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/nixos-fwdesktop.nix -------------------------------------------------------------------------------- /nixos/configurations/nixos-fwlaptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/nixos-fwlaptop.nix -------------------------------------------------------------------------------- /nixos/configurations/nixos-inspiron.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/nixos-inspiron.nix -------------------------------------------------------------------------------- /nixos/configurations/nixos-redmibook.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/configurations/nixos-redmibook.nix -------------------------------------------------------------------------------- /nixos/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/flake-module.nix -------------------------------------------------------------------------------- /nixos/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/flake.lock -------------------------------------------------------------------------------- /nixos/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/flake.nix -------------------------------------------------------------------------------- /nixos/modules/config/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/config/users.nix -------------------------------------------------------------------------------- /nixos/modules/config/zram.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/config/zram.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/dell-inspiron-7405.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/dell-inspiron-7405.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/framework-12-13th-gen-intel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/framework-12-13th-gen-intel.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/framework-desktop-amd-ai-max-300-series.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/framework-desktop-amd-ai-max-300-series.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/keyboard/halo65.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/keyboard/halo65.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/vultr-cc-intel-regular.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/vultr-cc-intel-regular.nix -------------------------------------------------------------------------------- /nixos/modules/hardware/xiaomi-redmibook-16-pro-2024.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/hardware/xiaomi-redmibook-16-pro-2024.nix -------------------------------------------------------------------------------- /nixos/modules/i18n/input-method/fcitx5.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/i18n/input-method/fcitx5.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/base.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/base.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/desktop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/desktop.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/graphical-full.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/graphical-full.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/graphical.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/graphical.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/laptop.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/laptop.nix -------------------------------------------------------------------------------- /nixos/modules/profiles/server.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/profiles/server.nix -------------------------------------------------------------------------------- /nixos/modules/programs/neovim.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/neovim.nix -------------------------------------------------------------------------------- /nixos/modules/programs/pot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/pot.nix -------------------------------------------------------------------------------- /nixos/modules/programs/steam.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/steam.nix -------------------------------------------------------------------------------- /nixos/modules/programs/wayland/hyprland.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/wayland/hyprland.nix -------------------------------------------------------------------------------- /nixos/modules/programs/wayland/niri.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/wayland/niri.nix -------------------------------------------------------------------------------- /nixos/modules/programs/wireshark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/programs/wireshark.nix -------------------------------------------------------------------------------- /nixos/modules/services/desktop-managers/plasma6.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/desktop-managers/plasma6.nix -------------------------------------------------------------------------------- /nixos/modules/services/desktops/pipewire.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/desktops/pipewire.nix -------------------------------------------------------------------------------- /nixos/modules/services/display-managers/sddm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/display-managers/sddm.nix -------------------------------------------------------------------------------- /nixos/modules/services/display-managers/tuigreet.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/display-managers/tuigreet.nix -------------------------------------------------------------------------------- /nixos/modules/services/hardware/kanata.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/hardware/kanata.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/ssh/sshd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/ssh/sshd.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/v2raya.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/v2raya.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/wpa_supplicant.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/wpa_supplicant.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/xray/blackhole-adblock.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/xray/blackhole-adblock.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/xray/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/xray/default.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/xray/vless-tcp-xtls-reality-client.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/xray/vless-tcp-xtls-reality-client.nix -------------------------------------------------------------------------------- /nixos/modules/services/networking/xray/vless-tcp-xtls-reality-server.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/networking/xray/vless-tcp-xtls-reality-server.nix -------------------------------------------------------------------------------- /nixos/modules/services/printing/cupsd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/printing/cupsd.nix -------------------------------------------------------------------------------- /nixos/modules/services/rclone/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/rclone/default.nix -------------------------------------------------------------------------------- /nixos/modules/services/rclone/file-systems.nix.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/services/rclone/file-systems.nix.secret -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/default.nix -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/GUID: -------------------------------------------------------------------------------- 1 | c850f7c6-cf5f-43d0-af77-7054b64ac38b -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/KEK/KEK.key.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/KEK/KEK.key.secret -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/KEK/KEK.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/KEK/KEK.pem -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/PK/PK.key.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/PK/PK.key.secret -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/PK/PK.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/PK/PK.pem -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/db/db.key.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/db/db.key.secret -------------------------------------------------------------------------------- /nixos/modules/system/boot/lanzaboote/pki/keys/db/db.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/lanzaboote/pki/keys/db/db.pem -------------------------------------------------------------------------------- /nixos/modules/system/boot/plymouth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/plymouth.nix -------------------------------------------------------------------------------- /nixos/modules/system/boot/quiet.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/system/boot/quiet.nix -------------------------------------------------------------------------------- /nixos/modules/themes/base/plymouth-rings_2.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/themes/base/plymouth-rings_2.nix -------------------------------------------------------------------------------- /nixos/modules/themes/catppuccin/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/themes/catppuccin/fonts.nix -------------------------------------------------------------------------------- /nixos/modules/themes/catppuccin/plymouth.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/themes/catppuccin/plymouth.nix -------------------------------------------------------------------------------- /nixos/modules/themes/catppuccin/sddm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/themes/catppuccin/sddm.nix -------------------------------------------------------------------------------- /nixos/modules/virtualisation/act.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/virtualisation/act.nix -------------------------------------------------------------------------------- /nixos/modules/virtualisation/docker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/virtualisation/docker.nix -------------------------------------------------------------------------------- /nixos/modules/virtualisation/libvirtd.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nixos/modules/virtualisation/libvirtd.nix -------------------------------------------------------------------------------- /nur.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/nur.nix -------------------------------------------------------------------------------- /pkgs/an/anki-bin-wayland/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/an/anki-bin-wayland/package.nix -------------------------------------------------------------------------------- /pkgs/an/anki-wayland/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/an/anki-wayland/package.nix -------------------------------------------------------------------------------- /pkgs/ca/catppuccin-discord-git/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/ca/catppuccin-discord-git/package.nix -------------------------------------------------------------------------------- /pkgs/ca/catppuccin-discord-git/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/ca/catppuccin-discord-git/update-shell.nix -------------------------------------------------------------------------------- /pkgs/ca/catppuccin-discord-git/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/ca/catppuccin-discord-git/update.sh -------------------------------------------------------------------------------- /pkgs/ca/catppuccin-wallpapers/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/ca/catppuccin-wallpapers/package.nix -------------------------------------------------------------------------------- /pkgs/co/colloid-gtk-theme-git/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/co/colloid-gtk-theme-git/lock.json -------------------------------------------------------------------------------- /pkgs/co/colloid-gtk-theme-git/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/co/colloid-gtk-theme-git/package.nix -------------------------------------------------------------------------------- /pkgs/co/colloid-gtk-theme-git/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/co/colloid-gtk-theme-git/update-shell.nix -------------------------------------------------------------------------------- /pkgs/co/colloid-gtk-theme-git/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/co/colloid-gtk-theme-git/update.sh -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/flake-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/flake-module.nix -------------------------------------------------------------------------------- /pkgs/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/flake.lock -------------------------------------------------------------------------------- /pkgs/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/flake.nix -------------------------------------------------------------------------------- /pkgs/io/iosevka-inconsolata/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/io/iosevka-inconsolata/package.nix -------------------------------------------------------------------------------- /pkgs/no/noita_save_manager/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/no/noita_save_manager/package.nix -------------------------------------------------------------------------------- /pkgs/nu/nu_scripts-git/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/nu/nu_scripts-git/lock.json -------------------------------------------------------------------------------- /pkgs/nu/nu_scripts-git/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/nu/nu_scripts-git/package.nix -------------------------------------------------------------------------------- /pkgs/nu/nu_scripts-git/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/nu/nu_scripts-git/update-shell.nix -------------------------------------------------------------------------------- /pkgs/nu/nu_scripts-git/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/nu/nu_scripts-git/update.sh -------------------------------------------------------------------------------- /pkgs/pa/palgen/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/pa/palgen/package.nix -------------------------------------------------------------------------------- /pkgs/v2/v2ray-rules-dat/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/v2/v2ray-rules-dat/package.nix -------------------------------------------------------------------------------- /pkgs/v2/v2ray-rules-dat/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/v2/v2ray-rules-dat/update-shell.nix -------------------------------------------------------------------------------- /pkgs/v2/v2ray-rules-dat/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/v2/v2ray-rules-dat/update.sh -------------------------------------------------------------------------------- /pkgs/vs/vscode-insiders/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscode-insiders/package.nix -------------------------------------------------------------------------------- /pkgs/vs/vscode-insiders/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscode-insiders/update-shell.nix -------------------------------------------------------------------------------- /pkgs/vs/vscode-insiders/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscode-insiders/update.sh -------------------------------------------------------------------------------- /pkgs/vs/vscodium-insiders/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscodium-insiders/package.nix -------------------------------------------------------------------------------- /pkgs/vs/vscodium-insiders/update-shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscodium-insiders/update-shell.nix -------------------------------------------------------------------------------- /pkgs/vs/vscodium-insiders/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/vs/vscodium-insiders/update.sh -------------------------------------------------------------------------------- /pkgs/wi/win2xcur/package.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/pkgs/wi/win2xcur/package.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Weathercold/nixfiles/HEAD/shell.nix --------------------------------------------------------------------------------