NixOS configuration
Find a file
Julian Sutter 82a98a1e6f refactor: Apply syntactic updates for NixOS best practices
This commit applies comprehensive syntactic improvements across the
repository to conform to NixOS formatting and coding standards.

## Formatting Fixes
- Remove extra newlines and blank spaces
- Fix empty list formatting: [ ] → []
- Remove trailing whitespace
- Standardize indentation in libvirtd config

## Best Practices
- Remove deprecated networking.useDHCP setting
- Remove unused extraHosts configuration
- Add lib.mkDefault to videoDrivers for better override support
- Add lib.mkDefault to podman for consistency

## Modern Conventions
- Update nix.settings.download-buffer-size to string format with units ("512M")
- Update system.stateVersion from 25.05 to 25.11 to match channel
- Update home.stateVersion from 25.05 to 25.11 to match channel

## Code Quality
- Remove commented-out code in aurora.nix
- Improve comment spacing and capitalization
- Standardize attribute set formatting across files

## Files Modified
- flake.nix
- desktop/virtualization.nix
- systems/aurora.nix
- systems/common.nix
- systems/labrizor.nix
- systems/skip01.nix
- users/jsutter.nix

Tested: Successfully rebuilt and switched framework system
2026-02-03 22:40:05 -08:00
appflakes/octofriend getting zoom clipboard working 2026-01-02 09:44:41 -08:00
desktop refactor: Apply syntactic updates for NixOS best practices 2026-02-03 22:40:05 -08:00
docs chore: Clean up repository code and structure 2026-02-03 22:33:03 -08:00
servers Refactor NixOS configuration: Move GUI apps to desktop modules and create headless config 2025-07-30 23:17:55 -07:00
systems refactor: Apply syntactic updates for NixOS best practices 2026-02-03 22:40:05 -08:00
users refactor: Apply syntactic updates for NixOS best practices 2026-02-03 22:40:05 -08:00
.gitignore chore: Clean up repository code and structure 2026-02-03 22:33:03 -08:00
flake.lock Update NixOS configurations across multiple modules 2026-02-03 22:13:06 -08:00
flake.nix refactor: Apply syntactic updates for NixOS best practices 2026-02-03 22:40:05 -08:00
README.md Update README.md 2025-11-12 17:26:39 +00:00

sudo parted /dev/nvme0n1 -- mklabel gpt
sudo parted /dev/nvme0n1 -- mkpart primary ext4 512MB 100%
sudo parted /dev/nvme0n1 -- mkpart ESP fat32 1MB 512MB
sudo parted /dev/nvme0n1 -- set 2 esp on
sleep 2
sudo mkfs.ext4 /dev/disk/by-partlabel/primary

sudo mount -o rw /dev/disk/by-partlabel/primary /mnt/
sudo mkdir /mnt/boot
sudo mkfs.vfat /dev/disk/by-partlabel/ESP
sudo mount -o rw /dev/disk/by-partlabel/ESP /mnt/boot/
sudo mkdir /mnt/root
sudo git clone https://jsutter:b9cf9383b20dc6efe4d0a732d659709097879b67@git.symbiotrip.com/jsutter/nixos /mnt/root/nixos

Then:

sudo -i
cd /mnt/root/nixos
nixos-install --flake .#<name> --no-root-password --impure

Finally:

nixos-enter --root '/mnt'
passwd jsutter