My main NixOS configuration. Features include a polished Hyprland environment with optional animated borders. Keyboard shortcut menu pop-down available in the top bar and so much more!
Go to file
2024-02-19 05:29:50 -06:00
config Switch all swaync icons to emojis 2024-02-19 05:29:50 -06:00
CONTRIBUTING.md Add CONTRIBUTING 2024-01-24 05:57:06 +00:00
flake.lock Configuring my impermanence correctly 2024-02-11 04:25:04 -06:00
flake.nix Move EVERYTHING to options.nix and add good persistant directories 2024-02-11 20:05:52 -06:00
hardware.nix Improve README & Fix Impermanence Perminently 2024-02-16 23:20:51 -06:00
home.nix Move to using options.nix for user and system settings 2024-02-05 21:46:24 -06:00
install-zaneyos.sh Update README & Final review of install script 2024-02-19 04:34:42 -06:00
LICENSE Add LICENSE 2024-01-30 08:06:28 +00:00
options.nix Final Change To NeoVim 2024-02-19 00:13:33 -06:00
README.md Update README & Final review of install script 2024-02-19 04:34:42 -06:00
system.nix fix neofetch output, small change to neovim, fix persistence cuz I am dumb, and did something with system 2024-02-19 05:12:17 -06:00

MAINTENANCE MODE: ACTIVE

The repo is currently under active edits and may contain undocumented changes as well as possibly broken configurations. This is temporary and will change after the repository is stable!

ZaneyOS 🟰 Best ❄️ NixOS Configs

ZaneyOS is a way of reproducing my configuration on any NixOS system. This includes the wallpaper, scripts, applications, config files, and more. Please remember to change username and hostname in flake.nix.

This project has a Wiki. Please read it to find out information on subjects that you may need to learn more about! I have put a lot of effort into the documentation so it should be accurate. However, please if you notice that something is wrong with it create an issue or reach out to me on Discord.

🍖 Requirements

  • You must be running on NixOS.
  • Must have installed using GPT & UEFI.
  • Change settings through script or manually editing options.nix file.

🎹 Pipewire, Spotify, & Notification Menu Controls

  • We are using the latest and greatest audio solution for Linux. If you like listening to music Spotify comes pre-installed out of the box. Not to mention you will have media and volume controls in the notification center available in the top bar.

🏇 Optimized Workflow, tmpfs For Speed, & Simple Yet Elegant Neovim

  • Using scratchpads with Hyprland for increased functionality and effeciency.
  • A tmpfs for the /tmp directory is created improving rebuild time and reducing strain on hdd/ssd.
  • No massive Neovim project here. This is my simple, easy to understand, yet incredible Neovim setup. You can grep recursively through entire folders and find specific files without ever leaving the text editor!

Please do yourself a favor and read the wiki.

📦 How To Install Packages?

  • You can search the Nix Packages & Options pages for what a package may be named or if it has options available that take care of configuration hurdles you may face.
  • To add a package there are the packages.nix files located in config/system and config/home folders. One is for programs available system wide and the other for your users environment only.

🙋 Having Issues / Questions?

  • Please feel free to raise an issue on the repo, please label a feature request with the title beginning with [feature request], thank you!
  • Contact me on Discord as well, for a potentially faster response.

⚠️ Important Changes!

  • The stable branch is gone, this means this project changes as my system changes. This will help with managing documentation. From now on before updating the repository please ensure the flake is not in maintenance mode. If an announcement has not been made on top of this page and Discord then its safe to pull and use the repository.
  • Impermanence/persistence has been moved to only being sourced inside the hardware.nix file. If you want to use this feature then please read the Wiki page about how to implement it.

⬇️ Install

📜 Script:

This is the easiest and recommended way of starting out. The script is not meant to allow you to change every option that you can in the flake or help you install extra packages. It is simply here so you can get my configuration installed with as little chances of breakages and then fiddle to your hearts content!

Simply copy this and run it:

nix-shell -p git curl
sh <(curl -L https://gitlab.com/Zaney/zaneyos/-/raw/main/install-zaneyos.sh)

🦽 Manual:

Run this command to ensure Git & Vim are installed:

nix-shell -p git vim

Clone this repo & enter it:

git clone https://gitlab.com/zaney/zaneyos.git
cd zaneyos
  • You should stay in this folder for the rest of the install

🪧🪧🪧 Edit options.nix 🪧🪧🪧

Generate your hardware.nix like so:

nixos-generate-config --show-hardware-config > hardware.nix

Run this to enable flakes and install the flake replacing hostname with whatever you put in the options.nix file:

NIX_CONFIG="experimental-features = nix-command flakes" 
sudo nixos-rebuild switch --flake .#hostname

This Flake's user will have the password be set for them as password. If you want to change it run a command replacing password with whatever you want to be your password. You then need to copy the output that it gives you like below into your hashedPassword in the system.nix file.

  mkpasswd -m sha-512 password

$6$YdPBODxytqUWXCYL$AHW1U9C6Qqkf6PZJI54jxFcPVm2sm/XWq3Z1qa94PFYz0FF.za9gl5WZL/z/g4nFLQ94SSEzMg5GMzMjJ6Vd7.

Now when you want to rebuild the configuration you have access to an alias called flake-rebuild that will rebuild the flake based of the flakeDir variable you set in options.nix!

Hope you enjoy!