nix/README.md

208 lines
9 KiB
Markdown
Raw Normal View History

2023-07-01 11:51:07 +02:00
# NixOS Configuration Repository
## NOTE: These configs expect this repo to be cloned to /etc/nixos/git/
2023-09-18 09:20:26 +02:00
### For first-run, see [setup.sh](setup.sh)
2023-09-18 09:16:55 +02:00
2023-09-18 09:57:53 +02:00
## Building
* To build the Raspberry Pi image: `nix build .#nixosConfigurations.nixos-rpi4-img.config.system.build.sdImage`
2023-09-18 12:09:51 +02:00
* bash alias: `nixos-build-pi-img`
2023-09-18 11:37:05 +02:00
* The resulting .img will be in `result/sd-image/*.img.zst`
2023-09-18 11:38:23 +02:00
```
6.6G nixos-sd-image-23.11.20230914.f2ea252-aarch64-linux.img
2.0G nixos-sd-image-23.11.20230914.f2ea252-aarch64-linux.img.zst
```
2023-09-18 09:57:53 +02:00
2023-09-15 11:27:38 +02:00
2023-08-31 02:24:50 +02:00
![Gruv'd Hyprland](./screenshot.png "Hyprland with a Gruvboxy theme")
2023-07-01 11:51:07 +02:00
---
2023-08-15 04:05:06 +02:00
# To Do List
2023-09-19 10:39:24 +02:00
* [ ] Look into `nix develop` - [Link](https://zero-to-nix.com/concepts/nix#unified-cli)
* [ ] Build a better dashboard to monitor all my nixified devices
2023-09-15 11:39:21 +02:00
* [ ] Look into Remote Builds - [Link](https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html)
2023-08-31 07:54:16 +02:00
* [ ] Find a way to remove all default search engines in Firefox (Google, Amazon, etc)
* [ ] Figure out what the home-manager `account` options are for.
2023-08-31 03:59:55 +02:00
* [ ] Security hardening
2023-09-19 10:39:24 +02:00
* [ ] Edit the hosts file
2023-08-30 16:35:25 +02:00
* [ ] cronjob
* [ ] Change wallpaper at a certain time of day
2023-08-26 14:33:56 +02:00
* [ ] emacs
* [ ] Add bracket auto-completion
* [ ] Find a way to have magit save login credentials
2023-08-23 02:32:17 +02:00
* [ ] Try disko - [Link](https://github.com/nix-community/disko)
2023-08-17 03:00:43 +02:00
* [ ] btrfs snapshots
* [ ] vscodium and user-config.js file?
2023-08-15 12:21:32 +02:00
* [ ] rofi - bitwarden-cli / bitwarden-menu ([Link](https://search.nixos.org/packages?channel=23.05&show=bitwarden-menu&from=0&size=50&sort=relevance&type=packages&query=bitwarden))
2023-08-31 05:31:28 +02:00
Completed ToDo List [here](complete.md)
2023-08-15 04:05:06 +02:00
---
2023-09-19 10:39:24 +02:00
# Directory Structure
2023-09-18 09:29:17 +02:00
```
.
├── home-manager
│   ├── common
│   │   ├── desktops
│   │   │   └── hyprland
│   │   │   ├── _default
│   │   │   │   └── wlogout
│   │   │   └── gruvbox
│   │   └── software
│   │   ├── cli
│   │   │   └── themes
│   │   │   ├── default
│   │   │   │   └── doom-emacs.d
│   │   │   └── gruvbox
│   │   │   └── doom-emacs.d
│   │   └── gui
│   │   └── themes
│   │   └── gruvbox
│   ├── hosts
│   │   └── nixos-laptop
│   │   └── desktops
│   │   ├── gnome
│   │   └── hyprland
│   │   ├── gruvbox
│   │   └── waybar
│   └── users
│   └── albert
├── keys
│   ├── hosts
│   ├── ssh
│   └── users
├── lib
├── nixos
│   ├── common
│   │   ├── desktops
│   │   │   ├── gnome
│   │   │   │   └── themes
│   │   │   └── hyprland
│   │   ├── modules
│   │   ├── services
│   │   └── software
│   │   ├── cli
│   │   └── gui
│   ├── hosts
│   │   ├── nixos-desktop
│   │   ├── nixos-laptop
│   │   ├── nixos-rpi4-01
│   │   ├── nixos-rpi4-02
│   │   ├── nixos-rpi4-03
│   │   ├── nixos-rpi4-img
│   │   └── nixos-vm-01
│   └── users
│   └── albert
├── secrets
└── wallpapers
├── colorful
└── gruvbox
```
2023-09-15 12:10:46 +02:00
# Configs
| Hostname | Description | Status |
| -------- | ----------- | ------ |
| nixos-laptop | Lenovo P1 Gen 5 | Complete |
2023-09-18 12:09:51 +02:00
| nixos-framework | Intel Framework 13 | Awaiting Hardware |
2023-09-15 12:10:46 +02:00
| nixos-rpi4-01 | Testing Raspberry Pi / ARM | In Work |
2023-09-17 12:47:21 +02:00
| nixos-vm-01 | VM for building images | In Work |
2023-09-15 12:10:46 +02:00
---
# Information
### Home Manager
* Home Manager Documentation - [Link](https://nix-community.github.io/home-manager/index.html)
* Home Manager Options Search - [Link](https://mipmip.github.io/home-manager-option-search/)
### NixOS
2023-07-07 00:48:24 +02:00
* NixOS Documentation - Stable - [Link](https://nixos.org/manual/nixos/stable/)
* NixOS Packages / Options Search - [Link](https://search.nixos.org/)
2023-07-12 08:13:20 +02:00
* Nix User Repository (NUR) Search - [Link](https://nur.nix-community.org/)
2023-09-18 09:57:53 +02:00
* ARM NixOS Building - [Link](https://nixos.wiki/wiki/NixOS_on_ARM#NixOS_installation_.26_configuration)
2023-08-23 03:44:00 +02:00
### Useful Links
* FlakeHub - [Link](https://flakehub.com)
2023-08-11 07:49:20 +02:00
* Track a Nixpkgs PR - [Link](https://nixpk.gs/pr-tracker.html)
* Awesome-Hyprland - [Link](https://github.com/hyprland-community/awesome-hyprland)
2023-08-23 03:44:00 +02:00
### Examples
* Tons of good examples here - [Link](https://github.com/Mic92/dotfiles/blob/main/nixos/modules/)
2023-08-11 13:59:44 +02:00
* NixOS Flakes Intro Guide - [Link](https://nixos-and-flakes.thiscute.world/)
2023-07-03 04:14:30 +02:00
2023-08-15 12:21:32 +02:00
### Theming
2023-08-23 03:44:00 +02:00
* Neofetch Themes - [Link](https://github.com/Chick2D/neofetch-themes/)
* gruvbox-factory - [Link](https://github.com/paulopacitti/gruvbox-factory)
* Hyprland Gruvboxy - [Link](https://github.com/0bCdian/Hyprland_dotfiles/tree/gruvboxy)
2023-08-15 12:21:32 +02:00
2023-07-03 04:14:30 +02:00
---
# Theming
2023-09-18 09:29:17 +02:00
| Name | Description | Desktops | Status |
| ---- | ----------- | -------- | ------ |
| default | No theming applied | All | Complete |
| gruvbox | Fall / Retro groovy theme | Hyprland/Gnome | Hyprland Complete, Gnome WIP |
| synth | Synthwave / Cyberpunk theme | Hyprland/Gnome | Work in Progress |
2023-09-18 09:29:17 +02:00
* To change system-wide themes, you need to change the following:
2023-08-31 13:22:44 +02:00
## Desktops
2023-08-22 10:16:21 +02:00
### gnome
1. `nixos/common/desktops/gnome/default.nix` - Change the imports at the bottom.
2. `home-manager/hosts/$HOSTNAME/desktops/gnome-conf.nix` - Change the variables at the top.
2023-08-22 10:16:21 +02:00
### hyprland
1. `home-manager/hosts/$HOSTNAME/desktops/hyprland/$THEME/hyprland-conf.nix` - Change the `WALLPAPER_DIR` variable in `".config/hypr/start.sh".text`
2. `home-manager/hosts/$HOSTNAME/desktops/hyprland/$THEME/hyprland-conf.nix` - Change `col.active_border` and `col.inactive_border` in the `general` section.
2023-08-23 03:44:00 +02:00
3. `home-manager/bash.nix` - Update the `sessionVariable` variable `GTK_THEME`
## Software
2023-08-22 10:16:21 +02:00
### waybar
1. `home-manager/hosts/$HOSTNAME/desktops/hyprland/$THEME/waybar-conf.nix` - Update all relevant colors. Possibly make configs for colorschemes and import them.
2023-08-23 03:44:00 +02:00
### swaylock
1. `home-manager/hosts/$HOSTNAME/desktops/hyprland/$THEME/swaylock-conf.nix` - Update all relevant colors. Possibly make configs for colorschemes and import them.
2023-08-22 10:16:21 +02:00
### kitty
1. `home-manager/common/software/cli/kitty.nix` - Update the content of `home.file.".config/kitty/theme.conf".text`
2023-08-22 10:16:21 +02:00
### Firefox
1. `home-manager/common/software/gui/firefox.nix` - Change the entry under "# Theming"
2023-08-22 10:16:21 +02:00
### btop
1. `home-manager/common/software/cli/btop.nix` - Set `color_theme`
2023-08-22 10:16:21 +02:00
### bash / powerline
1. `home-manager/common/software/cli/bash.nix` - Set `theme` in `programs.powerline-go.settings`
2023-08-22 10:16:21 +02:00
### neofetch
1. `home-manager/common/software/cli/neofetch.nix` - Update the contents of `home.file.".config/neofetch/config.conf".text`
### wlogout
2023-08-31 03:59:55 +02:00
1. `home-manager/hosts/$HOSTNAME/desktops/hyprland/$THEME/wlogout.nix` - Update the `style.css` section
2023-07-03 10:36:10 +02:00
## Text Editors
### emacs
1. `home-manager/common/software/cli/doom-emacs.d/packages.el` - Include your theme here, if needed
2. `home-manager/common/software/cli/doom-emacs.d/config.el` - Set your theme here `(setq doom-theme '$THEME_NAME)`
### neovim
2023-08-31 03:59:55 +02:00
1. Theming done within vim itself `<SPC> t h`
---
2023-07-03 10:36:10 +02:00
# GPG Keys
2023-09-15 15:49:56 +02:00
1. Import the user private key: `gpg --import gpg/users/albert/privkey.asc`
2023-08-15 04:17:58 +02:00
2. Mark it as trusted: `gpg --edit-key albert@sysctl.io`, then type `trust`, then `5`
2023-09-15 16:05:30 +02:00
3. On each new machine, run `sudo nix-shell -p ssh-to-pgp --run "ssh-to-pgp -i /etc/ssh/ssh_host_rsa_key -o /etc/nixos/git/keys/hosts/$(hostname).asc"`
2023-08-15 05:56:43 +02:00
* This will output the identifier you add to `.sops.yaml`
* Move `HOSTNAME.asc` to `keys/hosts/` and upload to git and rename accordingly.
2023-08-15 04:17:58 +02:00
2023-08-15 06:00:58 +02:00
# Secrets
2023-07-04 07:44:25 +02:00
1. To edit a file: cd to `/path/to/nix-files/` and run:
2023-08-15 06:00:58 +02:00
* `nix-shell -p sops --run "sops secrets/secret_file.yml"`
2023-07-07 00:48:44 +02:00
* New shell alias: `sops secrets/secret_file.yml`
2023-08-15 06:19:40 +02:00
2. When you add a new machine, you must update the secrets files encryption.
2023-09-17 13:48:04 +02:00
* Run `cd /etc/nixos/git; nix-shell; sops-update secrets/secrets.yaml` and commit the change.
2023-07-12 08:08:57 +02:00
# Lanzaboote / SecureBoot
* Instructions here - [Link](https://git.sysctl.io/Mirrors/lanzaboote/src/branch/master/docs/QUICK_START.md)
1. Create your keys: `sbctl create-keys`
2. Verify your machine is ready for SecureBoot: `sbctl verify` - Everything except `*-bzImage.efi` are signed
3. Enter Secureboot Setup mode in your EFI Settings on the motherboard (F10)
* Security -> SecureBoot -> Set to Enabled and "Reset to Setup Mode" and exit
4. Enroll the keys: `sbctl enroll-keys --microsoft`
2023-08-23 03:44:00 +02:00
* If you wish, you can select `--tpm-eventlog`, but checksums will change later (ie, at a kernel rebuild)
2023-08-24 02:58:12 +02:00
5. Reboot and verify you are activated: `bootctl status`
2023-08-28 05:08:58 +02:00
# Other
* Waybar inspirations
* https://github.com/Pipshag/dotfiles_nord
* https://github.com/hajosattila/dotfiles/
* https://gist.github.com/toger5/3a509d9a9d7ebba1e02205b00449ccff