├── .github ├── FUNDING.yml ├── README.md └── assets │ ├── nixos-logo.png │ ├── preview1.png │ ├── preview2.png │ ├── preview3.png │ ├── preview4.png │ └── preview5.png ├── .gitignore ├── LICENSE ├── dev-shells ├── bun │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── c-cpp │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── changeAll.sh ├── clojure │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── csharp │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── cue │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── default.nix ├── dhall │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── elixir │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── elm │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── empty │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── gleam │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── go │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── hashi │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── haskell │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── haxe │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── java │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── jupyter │ ├── .envrc │ ├── .gitignore │ ├── flake.lock │ ├── flake.nix │ └── pyproject.toml ├── kotlin │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── latex │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── lean4 │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── nickel │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── nim │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── nix │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── node │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── ocaml │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── odin │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── opa │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── php │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── platformio │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── protobuf │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── pulumi │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── purescript │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── python │ ├── .envrc │ ├── .gitignore │ ├── flake.lock │ └── flake.nix ├── r │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── ruby │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── rust-toolchain │ ├── .envrc │ ├── flake.lock │ ├── flake.nix │ └── rust-toolchain.toml ├── rust │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── scala │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── shell │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── swi-prolog │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── swift │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── updateAll.sh ├── vlang │ ├── .envrc │ ├── flake.lock │ └── flake.nix └── zig │ ├── .envrc │ ├── flake.lock │ └── flake.nix ├── flake.lock ├── flake.nix ├── hosts └── Default │ ├── configuration.nix │ ├── hardware-configuration.nix │ ├── host-packages.nix │ └── variables.nix ├── install.sh ├── live-install.sh ├── modules ├── core │ ├── bash.nix │ ├── boot.nix │ ├── default.nix │ ├── dlna.nix │ ├── dns.nix │ ├── flatpak.nix │ ├── fonts.nix │ ├── games.nix │ ├── hardware.nix │ ├── network.nix │ ├── nh.nix │ ├── packages.nix │ ├── printing.nix │ ├── sddm.nix │ ├── security.nix │ ├── services.nix │ ├── ssh.nix │ ├── starship.nix │ ├── syncthing.nix │ ├── system.nix │ ├── users.nix │ ├── virtualisation.nix │ └── zsh.nix ├── default.nix ├── desktop │ ├── gnome │ │ ├── dconf.nix │ │ └── default.nix │ ├── hyprland │ │ ├── default.nix │ │ ├── icons │ │ │ ├── backup.png │ │ │ ├── battery-quarter-solid.svg │ │ │ ├── battery-status.png │ │ │ ├── brightness-100.png │ │ │ ├── brightness-20.png │ │ │ ├── brightness-40.png │ │ │ ├── brightness-60.png │ │ │ ├── brightness-80.png │ │ │ ├── dropper.png │ │ │ ├── keyboard.svg │ │ │ ├── microphone-mute.png │ │ │ ├── microphone.png │ │ │ ├── music.png │ │ │ ├── notifications │ │ │ │ ├── arch.svg │ │ │ │ ├── critical.svg │ │ │ │ ├── keyboard.svg │ │ │ │ └── vol │ │ │ │ │ ├── muted-mic.svg │ │ │ │ │ ├── muted-speaker.svg │ │ │ │ │ ├── unmuted-mic.svg │ │ │ │ │ ├── unmuted-speaker.svg │ │ │ │ │ ├── vol-0.svg │ │ │ │ │ ├── vol-10.svg │ │ │ │ │ ├── vol-100.svg │ │ │ │ │ ├── vol-15.svg │ │ │ │ │ ├── vol-20.svg │ │ │ │ │ ├── vol-25.svg │ │ │ │ │ ├── vol-30.svg │ │ │ │ │ ├── vol-35.svg │ │ │ │ │ ├── vol-40.svg │ │ │ │ │ ├── vol-45.svg │ │ │ │ │ ├── vol-5.svg │ │ │ │ │ ├── vol-50.svg │ │ │ │ │ ├── vol-55.svg │ │ │ │ │ ├── vol-60.svg │ │ │ │ │ ├── vol-65.svg │ │ │ │ │ ├── vol-70.svg │ │ │ │ │ ├── vol-75.svg │ │ │ │ │ ├── vol-80.svg │ │ │ │ │ ├── vol-85.svg │ │ │ │ │ ├── vol-90.svg │ │ │ │ │ └── vol-95.svg │ │ │ ├── palette.png │ │ │ ├── picture.png │ │ │ ├── timer.png │ │ │ ├── uptime.png │ │ │ ├── volume-high.png │ │ │ ├── volume-low.png │ │ │ ├── volume-mid.png │ │ │ ├── volume-mute.png │ │ │ └── vpn.png │ │ ├── programs │ │ │ ├── dunst │ │ │ │ └── default.nix │ │ │ ├── hypridle │ │ │ │ └── default.nix │ │ │ ├── hyprlock │ │ │ │ └── default.nix │ │ │ ├── rofi │ │ │ │ ├── assets │ │ │ │ │ ├── steamdeck_holographic.png │ │ │ │ │ ├── style_1.png │ │ │ │ │ ├── style_2.png │ │ │ │ │ ├── style_3.png │ │ │ │ │ ├── style_4.png │ │ │ │ │ ├── style_5.png │ │ │ │ │ ├── style_6.png │ │ │ │ │ ├── style_7.png │ │ │ │ │ └── style_8.png │ │ │ │ ├── colors │ │ │ │ │ ├── adapta.rasi │ │ │ │ │ ├── arc.rasi │ │ │ │ │ ├── black.rasi │ │ │ │ │ ├── catppuccin.rasi │ │ │ │ │ ├── cyberpunk.rasi │ │ │ │ │ ├── dracula.rasi │ │ │ │ │ ├── everforest.rasi │ │ │ │ │ ├── gruvbox.rasi │ │ │ │ │ ├── lovelace.rasi │ │ │ │ │ ├── navy.rasi │ │ │ │ │ ├── nord.rasi │ │ │ │ │ ├── onedark.rasi │ │ │ │ │ ├── paper.rasi │ │ │ │ │ ├── solarized.rasi │ │ │ │ │ ├── tokyonight.rasi │ │ │ │ │ └── yousai.rasi │ │ │ │ ├── config.nix │ │ │ │ ├── default.nix │ │ │ │ └── launchers │ │ │ │ │ ├── type-1 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ │ └── fonts.rasi │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-11.rasi │ │ │ │ │ ├── style-12.rasi │ │ │ │ │ ├── style-13.rasi │ │ │ │ │ ├── style-14.rasi │ │ │ │ │ ├── style-15.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ ├── type-2 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ │ └── fonts.rasi │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-11.rasi │ │ │ │ │ ├── style-12.rasi │ │ │ │ │ ├── style-13.rasi │ │ │ │ │ ├── style-14.rasi │ │ │ │ │ ├── style-15.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ ├── type-3 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ │ └── fonts.rasi │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ ├── type-4 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── colors.rasi │ │ │ │ │ │ └── fonts.rasi │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ ├── type-5 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ └── style-5.rasi │ │ │ │ │ ├── type-6 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ ├── type-7 │ │ │ │ │ ├── launcher.sh │ │ │ │ │ ├── style-1.rasi │ │ │ │ │ ├── style-10.rasi │ │ │ │ │ ├── style-2.rasi │ │ │ │ │ ├── style-3.rasi │ │ │ │ │ ├── style-4.rasi │ │ │ │ │ ├── style-5.rasi │ │ │ │ │ ├── style-6.rasi │ │ │ │ │ ├── style-7.rasi │ │ │ │ │ ├── style-8.rasi │ │ │ │ │ └── style-9.rasi │ │ │ │ │ └── wallpaper-select.rasi │ │ │ ├── swaylock │ │ │ │ └── default.nix │ │ │ ├── swaync │ │ │ │ ├── default.nix │ │ │ │ └── music.png │ │ │ ├── waybar │ │ │ │ ├── minimal.nix │ │ │ │ └── stylish.nix │ │ │ └── wlogout │ │ │ │ ├── default.nix │ │ │ │ ├── default.nix.bak │ │ │ │ └── icons │ │ │ │ ├── lock-hover.png │ │ │ │ ├── lock.png │ │ │ │ ├── logout-hover.png │ │ │ │ ├── logout.png │ │ │ │ ├── power-hover.png │ │ │ │ ├── power.png │ │ │ │ ├── restart-hover.png │ │ │ │ ├── restart.png │ │ │ │ ├── sleep-hover.png │ │ │ │ └── sleep.png │ │ └── scripts │ │ │ ├── ClipManager.sh │ │ │ ├── MediaCtrl.sh │ │ │ ├── TogglePowerMode.sh │ │ │ ├── WaybarCava.sh │ │ │ ├── autoclicker.nix │ │ │ ├── autowaybar.sh │ │ │ ├── batterynotify.sh │ │ │ ├── brightnesscontrol.sh │ │ │ ├── dontkillsteam.sh │ │ │ ├── gamemode.sh │ │ │ ├── gpuinfo.sh │ │ │ ├── keybinds-rofi.sh │ │ │ ├── keybinds.sh │ │ │ ├── keyboardswitch.sh │ │ │ ├── rofimusic.sh │ │ │ ├── screen-record.sh │ │ │ ├── screenshot.sh │ │ │ ├── volumecontrol.sh │ │ │ ├── wallpaper.nix │ │ │ └── window-name.sh │ ├── i3 │ │ ├── default.nix │ │ ├── dunst.nix │ │ ├── keybindings.nix │ │ ├── monitors.sh │ │ ├── picom.nix │ │ ├── polybar │ │ │ ├── config.ini │ │ │ ├── config.ini.bak │ │ │ └── scripts │ │ │ │ ├── cava.sh │ │ │ │ ├── gpu_temp.sh │ │ │ │ ├── music-info.sh │ │ │ │ ├── playerctl-status.sh │ │ │ │ ├── polybar.sh │ │ │ │ └── workspaces.sh │ │ └── wallpaper.sh │ └── plasma6 │ │ └── default.nix ├── hardware │ ├── drives │ │ ├── default.nix │ │ ├── games.nix │ │ └── work.nix │ └── video │ │ ├── amdgpu.nix │ │ ├── intel.nix │ │ ├── nvidia.nix │ │ └── nvk.nix ├── programs │ ├── browser │ │ ├── firefox │ │ │ ├── bookmarks.nix │ │ │ ├── default.nix │ │ │ ├── policies.nix │ │ │ ├── search.nix │ │ │ └── settings.nix │ │ ├── floorp │ │ │ ├── bookmarks.nix │ │ │ ├── default.nix │ │ │ ├── policies.nix │ │ │ ├── search.nix │ │ │ └── settings.nix │ │ └── zen │ │ │ ├── bookmarks.nix │ │ │ ├── default.nix │ │ │ ├── policies.nix │ │ │ ├── search.nix │ │ │ ├── settings.nix │ │ │ ├── userChrome.css │ │ │ └── userContent.css │ ├── cli │ │ ├── btop │ │ │ └── default.nix │ │ ├── cava │ │ │ └── default.nix │ │ ├── direnv │ │ │ └── default.nix │ │ ├── fastfetch │ │ │ ├── config.jsonc │ │ │ ├── default.nix │ │ │ └── icons │ │ │ │ └── NixOS.png │ │ ├── lazygit │ │ │ └── default.nix │ │ ├── lf │ │ │ ├── default.nix │ │ │ └── icons │ │ ├── tmux │ │ │ └── default.nix │ │ └── yazi │ │ │ └── default.nix │ ├── editor │ │ ├── doom-emacs │ │ │ └── default.nix │ │ ├── helix │ │ │ └── default.nix │ │ ├── neovim │ │ │ └── default.nix │ │ ├── nixvim │ │ │ └── default.nix │ │ ├── nvchad │ │ │ └── default.nix │ │ └── vscode │ │ │ └── default.nix │ ├── media │ │ ├── discord │ │ │ └── default.nix │ │ ├── mpv │ │ │ └── default.nix │ │ ├── obs-studio │ │ │ └── default.nix │ │ ├── spicetify │ │ │ └── default.nix │ │ ├── thunderbird │ │ │ └── default.nix │ │ └── youtube-music │ │ │ └── default.nix │ ├── misc │ │ ├── cpufreq │ │ │ └── default.nix │ │ ├── lact │ │ │ └── default.nix │ │ ├── thunar │ │ │ └── default.nix │ │ └── tlp │ │ │ └── default.nix │ └── terminal │ │ ├── alacritty │ │ └── default.nix │ │ └── kitty │ │ └── default.nix ├── scripts │ ├── default.nix │ ├── driverinfo.nix │ ├── extract.nix │ ├── launcher.nix │ ├── network.nix │ ├── rebuild.nix │ ├── rollback.nix │ ├── tmux-sessionizer.nix │ └── underwatt.nix └── themes │ ├── Catppuccin │ └── default.nix │ ├── Dracula │ └── default.nix │ ├── rose-pine │ └── default.nix │ └── wallpapers │ ├── basement.jpg │ ├── cyberpunk.png │ ├── dark-forest.jpg │ ├── escape_velocity.jpg │ ├── evening-sky.webp │ ├── kurzgesagt-galaxies.webp │ ├── kurzgesagt.webp │ ├── moon.webp │ ├── puffy-stars.jpg │ ├── python-dev.webp │ ├── train-sideview.webp │ └── train.jpg ├── overlays └── default.nix └── pkgs ├── default.nix ├── pokego.nix └── sddm-themes ├── sugar-dark.nix └── tokyo-night.nix /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/assets/nixos-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/nixos-logo.png -------------------------------------------------------------------------------- /.github/assets/preview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/preview1.png -------------------------------------------------------------------------------- /.github/assets/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/preview2.png -------------------------------------------------------------------------------- /.github/assets/preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/preview3.png -------------------------------------------------------------------------------- /.github/assets/preview4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/preview4.png -------------------------------------------------------------------------------- /.github/assets/preview5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.github/assets/preview5.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/LICENSE -------------------------------------------------------------------------------- /dev-shells/bun/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/bun/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/bun/flake.lock -------------------------------------------------------------------------------- /dev-shells/bun/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/bun/flake.nix -------------------------------------------------------------------------------- /dev-shells/c-cpp/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/c-cpp/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/c-cpp/flake.lock -------------------------------------------------------------------------------- /dev-shells/c-cpp/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/c-cpp/flake.nix -------------------------------------------------------------------------------- /dev-shells/changeAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/changeAll.sh -------------------------------------------------------------------------------- /dev-shells/clojure/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/clojure/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/clojure/flake.lock -------------------------------------------------------------------------------- /dev-shells/clojure/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/clojure/flake.nix -------------------------------------------------------------------------------- /dev-shells/csharp/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/csharp/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/csharp/flake.lock -------------------------------------------------------------------------------- /dev-shells/csharp/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/csharp/flake.nix -------------------------------------------------------------------------------- /dev-shells/cue/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/cue/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/cue/flake.lock -------------------------------------------------------------------------------- /dev-shells/cue/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/cue/flake.nix -------------------------------------------------------------------------------- /dev-shells/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/default.nix -------------------------------------------------------------------------------- /dev-shells/dhall/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/dhall/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/dhall/flake.lock -------------------------------------------------------------------------------- /dev-shells/dhall/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/dhall/flake.nix -------------------------------------------------------------------------------- /dev-shells/elixir/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/elixir/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/elixir/flake.lock -------------------------------------------------------------------------------- /dev-shells/elixir/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/elixir/flake.nix -------------------------------------------------------------------------------- /dev-shells/elm/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/elm/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/elm/flake.lock -------------------------------------------------------------------------------- /dev-shells/elm/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/elm/flake.nix -------------------------------------------------------------------------------- /dev-shells/empty/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/empty/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/empty/flake.lock -------------------------------------------------------------------------------- /dev-shells/empty/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/empty/flake.nix -------------------------------------------------------------------------------- /dev-shells/gleam/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/gleam/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/gleam/flake.lock -------------------------------------------------------------------------------- /dev-shells/gleam/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/gleam/flake.nix -------------------------------------------------------------------------------- /dev-shells/go/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/go/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/go/flake.lock -------------------------------------------------------------------------------- /dev-shells/go/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/go/flake.nix -------------------------------------------------------------------------------- /dev-shells/hashi/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/hashi/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/hashi/flake.lock -------------------------------------------------------------------------------- /dev-shells/hashi/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/hashi/flake.nix -------------------------------------------------------------------------------- /dev-shells/haskell/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/haskell/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/haskell/flake.lock -------------------------------------------------------------------------------- /dev-shells/haskell/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/haskell/flake.nix -------------------------------------------------------------------------------- /dev-shells/haxe/.envrc: -------------------------------------------------------------------------------- 1 | use flake -------------------------------------------------------------------------------- /dev-shells/haxe/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/haxe/flake.lock -------------------------------------------------------------------------------- /dev-shells/haxe/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/haxe/flake.nix -------------------------------------------------------------------------------- /dev-shells/java/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/java/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/java/flake.lock -------------------------------------------------------------------------------- /dev-shells/java/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/java/flake.nix -------------------------------------------------------------------------------- /dev-shells/jupyter/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/jupyter/.gitignore: -------------------------------------------------------------------------------- 1 | /.venv/ 2 | -------------------------------------------------------------------------------- /dev-shells/jupyter/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/jupyter/flake.lock -------------------------------------------------------------------------------- /dev-shells/jupyter/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/jupyter/flake.nix -------------------------------------------------------------------------------- /dev-shells/jupyter/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/jupyter/pyproject.toml -------------------------------------------------------------------------------- /dev-shells/kotlin/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/kotlin/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/kotlin/flake.lock -------------------------------------------------------------------------------- /dev-shells/kotlin/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/kotlin/flake.nix -------------------------------------------------------------------------------- /dev-shells/latex/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/latex/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/latex/flake.lock -------------------------------------------------------------------------------- /dev-shells/latex/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/latex/flake.nix -------------------------------------------------------------------------------- /dev-shells/lean4/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/lean4/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/lean4/flake.lock -------------------------------------------------------------------------------- /dev-shells/lean4/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/lean4/flake.nix -------------------------------------------------------------------------------- /dev-shells/nickel/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/nickel/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nickel/flake.lock -------------------------------------------------------------------------------- /dev-shells/nickel/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nickel/flake.nix -------------------------------------------------------------------------------- /dev-shells/nim/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/nim/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nim/flake.lock -------------------------------------------------------------------------------- /dev-shells/nim/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nim/flake.nix -------------------------------------------------------------------------------- /dev-shells/nix/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/nix/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nix/flake.lock -------------------------------------------------------------------------------- /dev-shells/nix/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/nix/flake.nix -------------------------------------------------------------------------------- /dev-shells/node/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/node/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/node/flake.lock -------------------------------------------------------------------------------- /dev-shells/node/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/node/flake.nix -------------------------------------------------------------------------------- /dev-shells/ocaml/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/ocaml/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/ocaml/flake.lock -------------------------------------------------------------------------------- /dev-shells/ocaml/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/ocaml/flake.nix -------------------------------------------------------------------------------- /dev-shells/odin/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/odin/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/odin/flake.lock -------------------------------------------------------------------------------- /dev-shells/odin/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/odin/flake.nix -------------------------------------------------------------------------------- /dev-shells/opa/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/opa/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/opa/flake.lock -------------------------------------------------------------------------------- /dev-shells/opa/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/opa/flake.nix -------------------------------------------------------------------------------- /dev-shells/php/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/php/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/php/flake.lock -------------------------------------------------------------------------------- /dev-shells/php/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/php/flake.nix -------------------------------------------------------------------------------- /dev-shells/platformio/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/platformio/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/platformio/flake.lock -------------------------------------------------------------------------------- /dev-shells/platformio/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/platformio/flake.nix -------------------------------------------------------------------------------- /dev-shells/protobuf/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/protobuf/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/protobuf/flake.lock -------------------------------------------------------------------------------- /dev-shells/protobuf/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/protobuf/flake.nix -------------------------------------------------------------------------------- /dev-shells/pulumi/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/pulumi/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/pulumi/flake.lock -------------------------------------------------------------------------------- /dev-shells/pulumi/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/pulumi/flake.nix -------------------------------------------------------------------------------- /dev-shells/purescript/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/purescript/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/purescript/flake.lock -------------------------------------------------------------------------------- /dev-shells/purescript/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/purescript/flake.nix -------------------------------------------------------------------------------- /dev-shells/python/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/python/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /dev-shells/python/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/python/flake.lock -------------------------------------------------------------------------------- /dev-shells/python/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/python/flake.nix -------------------------------------------------------------------------------- /dev-shells/r/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/r/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/r/flake.lock -------------------------------------------------------------------------------- /dev-shells/r/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/r/flake.nix -------------------------------------------------------------------------------- /dev-shells/ruby/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/ruby/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/ruby/flake.lock -------------------------------------------------------------------------------- /dev-shells/ruby/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/ruby/flake.nix -------------------------------------------------------------------------------- /dev-shells/rust-toolchain/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/rust-toolchain/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/rust-toolchain/flake.lock -------------------------------------------------------------------------------- /dev-shells/rust-toolchain/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/rust-toolchain/flake.nix -------------------------------------------------------------------------------- /dev-shells/rust-toolchain/rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/rust-toolchain/rust-toolchain.toml -------------------------------------------------------------------------------- /dev-shells/rust/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/rust/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/rust/flake.lock -------------------------------------------------------------------------------- /dev-shells/rust/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/rust/flake.nix -------------------------------------------------------------------------------- /dev-shells/scala/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/scala/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/scala/flake.lock -------------------------------------------------------------------------------- /dev-shells/scala/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/scala/flake.nix -------------------------------------------------------------------------------- /dev-shells/shell/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/shell/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/shell/flake.lock -------------------------------------------------------------------------------- /dev-shells/shell/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/shell/flake.nix -------------------------------------------------------------------------------- /dev-shells/swi-prolog/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/swi-prolog/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/swi-prolog/flake.lock -------------------------------------------------------------------------------- /dev-shells/swi-prolog/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/swi-prolog/flake.nix -------------------------------------------------------------------------------- /dev-shells/swift/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/swift/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/swift/flake.lock -------------------------------------------------------------------------------- /dev-shells/swift/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/swift/flake.nix -------------------------------------------------------------------------------- /dev-shells/updateAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/updateAll.sh -------------------------------------------------------------------------------- /dev-shells/vlang/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/vlang/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/vlang/flake.lock -------------------------------------------------------------------------------- /dev-shells/vlang/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/vlang/flake.nix -------------------------------------------------------------------------------- /dev-shells/zig/.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /dev-shells/zig/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/zig/flake.lock -------------------------------------------------------------------------------- /dev-shells/zig/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/dev-shells/zig/flake.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/flake.nix -------------------------------------------------------------------------------- /hosts/Default/configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/hosts/Default/configuration.nix -------------------------------------------------------------------------------- /hosts/Default/hardware-configuration.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/hosts/Default/hardware-configuration.nix -------------------------------------------------------------------------------- /hosts/Default/host-packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/hosts/Default/host-packages.nix -------------------------------------------------------------------------------- /hosts/Default/variables.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/hosts/Default/variables.nix -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/install.sh -------------------------------------------------------------------------------- /live-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/live-install.sh -------------------------------------------------------------------------------- /modules/core/bash.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/bash.nix -------------------------------------------------------------------------------- /modules/core/boot.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/boot.nix -------------------------------------------------------------------------------- /modules/core/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/default.nix -------------------------------------------------------------------------------- /modules/core/dlna.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/dlna.nix -------------------------------------------------------------------------------- /modules/core/dns.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/dns.nix -------------------------------------------------------------------------------- /modules/core/flatpak.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/flatpak.nix -------------------------------------------------------------------------------- /modules/core/fonts.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/fonts.nix -------------------------------------------------------------------------------- /modules/core/games.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/games.nix -------------------------------------------------------------------------------- /modules/core/hardware.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/hardware.nix -------------------------------------------------------------------------------- /modules/core/network.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/network.nix -------------------------------------------------------------------------------- /modules/core/nh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/nh.nix -------------------------------------------------------------------------------- /modules/core/packages.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/packages.nix -------------------------------------------------------------------------------- /modules/core/printing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/printing.nix -------------------------------------------------------------------------------- /modules/core/sddm.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/sddm.nix -------------------------------------------------------------------------------- /modules/core/security.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/security.nix -------------------------------------------------------------------------------- /modules/core/services.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/services.nix -------------------------------------------------------------------------------- /modules/core/ssh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/ssh.nix -------------------------------------------------------------------------------- /modules/core/starship.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/starship.nix -------------------------------------------------------------------------------- /modules/core/syncthing.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/syncthing.nix -------------------------------------------------------------------------------- /modules/core/system.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/system.nix -------------------------------------------------------------------------------- /modules/core/users.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/users.nix -------------------------------------------------------------------------------- /modules/core/virtualisation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/virtualisation.nix -------------------------------------------------------------------------------- /modules/core/zsh.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/core/zsh.nix -------------------------------------------------------------------------------- /modules/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/default.nix -------------------------------------------------------------------------------- /modules/desktop/gnome/dconf.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/gnome/dconf.nix -------------------------------------------------------------------------------- /modules/desktop/gnome/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/gnome/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/backup.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/battery-quarter-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/battery-quarter-solid.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/battery-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/battery-status.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/brightness-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/brightness-100.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/brightness-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/brightness-20.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/brightness-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/brightness-40.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/brightness-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/brightness-60.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/brightness-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/brightness-80.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/dropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/dropper.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/keyboard.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/microphone-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/microphone-mute.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/microphone.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/music.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/arch.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/critical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/critical.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/keyboard.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/muted-mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/muted-mic.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/muted-speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/muted-speaker.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/unmuted-mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/unmuted-mic.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/unmuted-speaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/unmuted-speaker.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-0.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-10.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-100.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-15.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-20.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-25.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-30.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-35.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-35.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-40.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-45.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-45.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-5.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-50.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-55.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-55.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-60.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-60.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-65.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-65.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-70.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-70.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-75.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-80.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-85.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-85.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-90.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-90.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/notifications/vol/vol-95.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/notifications/vol/vol-95.svg -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/palette.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/picture.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/timer.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/uptime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/uptime.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/volume-high.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/volume-high.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/volume-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/volume-low.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/volume-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/volume-mid.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/volume-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/volume-mute.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/icons/vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/icons/vpn.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/dunst/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/dunst/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/hypridle/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/hypridle/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/hyprlock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/hyprlock/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/steamdeck_holographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/steamdeck_holographic.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_1.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_2.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_3.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_4.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_5.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_6.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_7.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/assets/style_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/assets/style_8.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/adapta.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/adapta.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/arc.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/arc.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/black.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/black.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/catppuccin.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/catppuccin.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/cyberpunk.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/cyberpunk.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/dracula.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/dracula.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/everforest.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/everforest.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/gruvbox.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/gruvbox.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/lovelace.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/lovelace.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/navy.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/navy.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/nord.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/nord.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/onedark.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/onedark.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/paper.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/paper.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/solarized.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/solarized.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/tokyonight.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/tokyonight.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/colors/yousai.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/colors/yousai.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/config.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/shared/colors.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/shared/fonts.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-11.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-12.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-13.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-14.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-15.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-1/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-1/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/shared/colors.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/shared/fonts.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-11.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-11.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-12.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-12.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-13.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-13.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-14.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-14.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-15.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-15.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-2/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-2/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/shared/colors.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/shared/fonts.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-3/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-3/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/shared/colors.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/shared/colors.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/shared/fonts.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/shared/fonts.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-4/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-4/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-5/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-5/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-6/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-6/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/launcher.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-1.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-1.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-10.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-10.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-2.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-2.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-3.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-3.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-4.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-4.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-5.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-5.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-6.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-6.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-7.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-7.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-8.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-8.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/type-7/style-9.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/type-7/style-9.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/rofi/launchers/wallpaper-select.rasi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/rofi/launchers/wallpaper-select.rasi -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/swaylock/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/swaylock/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/swaync/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/swaync/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/swaync/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/swaync/music.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/waybar/minimal.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/waybar/minimal.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/waybar/stylish.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/waybar/stylish.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/default.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/default.nix.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/default.nix.bak -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/lock-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/lock-hover.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/lock.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/logout-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/logout-hover.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/logout.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/power-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/power-hover.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/power.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/restart-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/restart-hover.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/restart.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/sleep-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/sleep-hover.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/programs/wlogout/icons/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/programs/wlogout/icons/sleep.png -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/ClipManager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/ClipManager.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/MediaCtrl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/MediaCtrl.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/TogglePowerMode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/TogglePowerMode.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/WaybarCava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/WaybarCava.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/autoclicker.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/autoclicker.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/autowaybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/autowaybar.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/batterynotify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/batterynotify.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/brightnesscontrol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/brightnesscontrol.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/dontkillsteam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/dontkillsteam.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/gamemode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/gamemode.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/gpuinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/gpuinfo.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/keybinds-rofi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/keybinds-rofi.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/keybinds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/keybinds.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/keyboardswitch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/keyboardswitch.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/rofimusic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/rofimusic.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/screen-record.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/screen-record.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/screenshot.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/volumecontrol.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/volumecontrol.sh -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/wallpaper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/wallpaper.nix -------------------------------------------------------------------------------- /modules/desktop/hyprland/scripts/window-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/hyprland/scripts/window-name.sh -------------------------------------------------------------------------------- /modules/desktop/i3/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/default.nix -------------------------------------------------------------------------------- /modules/desktop/i3/dunst.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/dunst.nix -------------------------------------------------------------------------------- /modules/desktop/i3/keybindings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/keybindings.nix -------------------------------------------------------------------------------- /modules/desktop/i3/monitors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/monitors.sh -------------------------------------------------------------------------------- /modules/desktop/i3/picom.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/picom.nix -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/config.ini -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/config.ini.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/config.ini.bak -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/cava.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/scripts/cava.sh -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/gpu_temp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/scripts/gpu_temp.sh -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/music-info.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/playerctl-status.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/polybar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/scripts/polybar.sh -------------------------------------------------------------------------------- /modules/desktop/i3/polybar/scripts/workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/polybar/scripts/workspaces.sh -------------------------------------------------------------------------------- /modules/desktop/i3/wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/i3/wallpaper.sh -------------------------------------------------------------------------------- /modules/desktop/plasma6/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/desktop/plasma6/default.nix -------------------------------------------------------------------------------- /modules/hardware/drives/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/drives/default.nix -------------------------------------------------------------------------------- /modules/hardware/drives/games.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/drives/games.nix -------------------------------------------------------------------------------- /modules/hardware/drives/work.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/drives/work.nix -------------------------------------------------------------------------------- /modules/hardware/video/amdgpu.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/video/amdgpu.nix -------------------------------------------------------------------------------- /modules/hardware/video/intel.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/video/intel.nix -------------------------------------------------------------------------------- /modules/hardware/video/nvidia.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/video/nvidia.nix -------------------------------------------------------------------------------- /modules/hardware/video/nvk.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/hardware/video/nvk.nix -------------------------------------------------------------------------------- /modules/programs/browser/firefox/bookmarks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/firefox/bookmarks.nix -------------------------------------------------------------------------------- /modules/programs/browser/firefox/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/firefox/default.nix -------------------------------------------------------------------------------- /modules/programs/browser/firefox/policies.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/firefox/policies.nix -------------------------------------------------------------------------------- /modules/programs/browser/firefox/search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/firefox/search.nix -------------------------------------------------------------------------------- /modules/programs/browser/firefox/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/firefox/settings.nix -------------------------------------------------------------------------------- /modules/programs/browser/floorp/bookmarks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/floorp/bookmarks.nix -------------------------------------------------------------------------------- /modules/programs/browser/floorp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/floorp/default.nix -------------------------------------------------------------------------------- /modules/programs/browser/floorp/policies.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/floorp/policies.nix -------------------------------------------------------------------------------- /modules/programs/browser/floorp/search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/floorp/search.nix -------------------------------------------------------------------------------- /modules/programs/browser/floorp/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/floorp/settings.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/bookmarks.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/bookmarks.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/default.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/policies.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/policies.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/search.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/search.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/settings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/settings.nix -------------------------------------------------------------------------------- /modules/programs/browser/zen/userChrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/userChrome.css -------------------------------------------------------------------------------- /modules/programs/browser/zen/userContent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/browser/zen/userContent.css -------------------------------------------------------------------------------- /modules/programs/cli/btop/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/btop/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/cava/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/cava/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/direnv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/direnv/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/fastfetch/config.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/fastfetch/config.jsonc -------------------------------------------------------------------------------- /modules/programs/cli/fastfetch/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/fastfetch/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/fastfetch/icons/NixOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/fastfetch/icons/NixOS.png -------------------------------------------------------------------------------- /modules/programs/cli/lazygit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/lazygit/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/lf/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/lf/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/lf/icons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/lf/icons -------------------------------------------------------------------------------- /modules/programs/cli/tmux/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/tmux/default.nix -------------------------------------------------------------------------------- /modules/programs/cli/yazi/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/cli/yazi/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/doom-emacs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/doom-emacs/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/helix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/helix/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/neovim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/neovim/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/nixvim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/nixvim/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/nvchad/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/nvchad/default.nix -------------------------------------------------------------------------------- /modules/programs/editor/vscode/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/editor/vscode/default.nix -------------------------------------------------------------------------------- /modules/programs/media/discord/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/discord/default.nix -------------------------------------------------------------------------------- /modules/programs/media/mpv/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/mpv/default.nix -------------------------------------------------------------------------------- /modules/programs/media/obs-studio/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/obs-studio/default.nix -------------------------------------------------------------------------------- /modules/programs/media/spicetify/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/spicetify/default.nix -------------------------------------------------------------------------------- /modules/programs/media/thunderbird/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/thunderbird/default.nix -------------------------------------------------------------------------------- /modules/programs/media/youtube-music/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/media/youtube-music/default.nix -------------------------------------------------------------------------------- /modules/programs/misc/cpufreq/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/misc/cpufreq/default.nix -------------------------------------------------------------------------------- /modules/programs/misc/lact/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/misc/lact/default.nix -------------------------------------------------------------------------------- /modules/programs/misc/thunar/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/misc/thunar/default.nix -------------------------------------------------------------------------------- /modules/programs/misc/tlp/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/misc/tlp/default.nix -------------------------------------------------------------------------------- /modules/programs/terminal/alacritty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/terminal/alacritty/default.nix -------------------------------------------------------------------------------- /modules/programs/terminal/kitty/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/programs/terminal/kitty/default.nix -------------------------------------------------------------------------------- /modules/scripts/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/default.nix -------------------------------------------------------------------------------- /modules/scripts/driverinfo.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/driverinfo.nix -------------------------------------------------------------------------------- /modules/scripts/extract.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/extract.nix -------------------------------------------------------------------------------- /modules/scripts/launcher.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/launcher.nix -------------------------------------------------------------------------------- /modules/scripts/network.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/network.nix -------------------------------------------------------------------------------- /modules/scripts/rebuild.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/rebuild.nix -------------------------------------------------------------------------------- /modules/scripts/rollback.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/rollback.nix -------------------------------------------------------------------------------- /modules/scripts/tmux-sessionizer.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/tmux-sessionizer.nix -------------------------------------------------------------------------------- /modules/scripts/underwatt.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/scripts/underwatt.nix -------------------------------------------------------------------------------- /modules/themes/Catppuccin/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/Catppuccin/default.nix -------------------------------------------------------------------------------- /modules/themes/Dracula/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/Dracula/default.nix -------------------------------------------------------------------------------- /modules/themes/rose-pine/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/rose-pine/default.nix -------------------------------------------------------------------------------- /modules/themes/wallpapers/basement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/basement.jpg -------------------------------------------------------------------------------- /modules/themes/wallpapers/cyberpunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/cyberpunk.png -------------------------------------------------------------------------------- /modules/themes/wallpapers/dark-forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/dark-forest.jpg -------------------------------------------------------------------------------- /modules/themes/wallpapers/escape_velocity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/escape_velocity.jpg -------------------------------------------------------------------------------- /modules/themes/wallpapers/evening-sky.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/evening-sky.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/kurzgesagt-galaxies.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/kurzgesagt-galaxies.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/kurzgesagt.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/kurzgesagt.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/moon.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/moon.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/puffy-stars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/puffy-stars.jpg -------------------------------------------------------------------------------- /modules/themes/wallpapers/python-dev.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/python-dev.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/train-sideview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/train-sideview.webp -------------------------------------------------------------------------------- /modules/themes/wallpapers/train.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/modules/themes/wallpapers/train.jpg -------------------------------------------------------------------------------- /overlays/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/overlays/default.nix -------------------------------------------------------------------------------- /pkgs/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/pkgs/default.nix -------------------------------------------------------------------------------- /pkgs/pokego.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/pkgs/pokego.nix -------------------------------------------------------------------------------- /pkgs/sddm-themes/sugar-dark.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/pkgs/sddm-themes/sugar-dark.nix -------------------------------------------------------------------------------- /pkgs/sddm-themes/tokyo-night.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sly-Harvey/NixOS/HEAD/pkgs/sddm-themes/tokyo-night.nix --------------------------------------------------------------------------------