Kieran's opinionated (and probably slightly dumb) nix config

Merge branch 'master' of github.com:kcoderhtml/dots

+15 -2
+13 -2
README.md
··· 14 14 5. Run disko with `nix --experimental-features "nix-command flakes" run github:nix-community/disko -- --mode disko /tmp/disk-config.nix` 15 15 6. Mount disk with `mount | grep /mnt` and then `cd /mnt/etc/nixos` 16 16 7. Clone this repo to your `/mnt/etc/nixos` folder with `git clone https://github.com/kcoderhtml/dots.git .` 17 - 8. `nixos-install --flake .#moonlark` 17 + 8. install the flake: `nixos-install --flake .#moonlark --no-root-passwd` 18 + 9. Once it finishes run nix install and then reboot 19 + ```bash 20 + nixos-install 21 + reboot 22 + ``` 23 + 10. Pray to the nix gods that it works 🙏 24 + 11. If it worked then you should be able to login with the user `kierank` and the password `lolzthisaintsecure!` 25 + 12. Change the password with `passwd kierank` 18 26 19 27 ## Screenshots 20 28 ··· 28 36 - [hyprland-community/hyprnix](https://github.com/hyprland-community/hyprnix) 29 37 - [spikespaz/dotfiles](https://github.com/spikespaz/dotfiles) 30 38 - [Misterio77/nix-starter-configs](https://github.com/Misterio77/nix-starter-configs) 31 - - [mccd.space install guide](https://mccd.space/posts/git-to-deploy/) 39 + - [mccd.space install guide](https://mccd.space/posts/git-to-deploy/) 40 + - [disco docs](https://github.com/nix-community/disko/blob/master/docs/quickstart.md) 41 + - [XDG_CONFIG_HOME setting](https://github.com/NixOS/nixpkgs/issues/224525) 42 + - [Daru-san/spicetify-nix](https://github.com/Daru-san/spicetify-nix)
+2
moonlark/configuration.nix
··· 138 138 ]; 139 139 }; 140 140 141 + programs.hyprland.enable = true; 142 + 141 143 # enable cups 142 144 services.printing.enable = true; 143 145