Bez popisu

xd1le 2fe2821458 alacritty: cemant and base16-black-metal-immortal colors před 3 roky
alacritty 2fe2821458 alacritty: cemant and base16-black-metal-immortal colors před 3 roky
chromium c4081bbdca ⚙ chromium: increase monospace font size on github před 6 roky
compton 25f7ab78de ⚙🎁 polybar: colors před 7 roky
emacs 2fe2821458 alacritty: cemant and base16-black-metal-immortal colors před 3 roky
fontconfig 9d49ecd3bd ⚙ update před 5 roky
ghci 0aa402f764 feat(ghci): vi bindings před 8 roky
git 2b8b0967b2 git: use 'main' as initial branch před 3 roky
guile 8200aa4b8c refactor(bin): remove some scripts to move them to [1] před 7 roky
herbstluftwm 786dbe0623 ⚙ terminal: switch to using alacritty před 4 roky
interception-tools c6174ee38f nixos: enable interception tools před 4 roky
iosevka 0c8339ab75 iosevka: separate iosevka customization from iosevka-custom nix package před 3 roky
latexmk 7cad720a41 🎁 latexmk: init latexmkrc před 7 roky
mpd 4d2a3e4ded refactor(mpd): new music library location před 7 roky
mpv 11909d84bf ⚙ mpv: add quick chapter navigation keybindings před 7 roky
nixos fcd313b0dd nixos: use latest janet release před 3 roky
pandoc 76e550be28 ♻ nixos/pkgs/xwinwrap + pandoc: add some uncommited files in case they před 5 roky
polybar 9d49ecd3bd ⚙ update před 5 roky
readline e37f262ec8 refactor(readline): place .inputrc in the right place před 7 roky
stow adb1c72d74 feat(stow): add vim swap files to the default global ignore list před 8 roky
sxhkd bcfebed62a ⚙ sxhkd: up and down arrow keys are still sometimes useful to use in web před 5 roky
tridactyl 85075a8b73 🎈 tridactyl: init před 4 roky
vim 857aa4305e update před 3 roky
x a045727ae8 ⚙ nixos: switch to dummy startx display manager před 4 roky
zathura f00d460de6 🎁 zathura: init zathurarc před 7 roky
zsh 857aa4305e update před 3 roky
.gitignore 15ed3c536f refactor(nixos): add nixpkgs submodule back again před 7 roky
bootstrap 9d49ecd3bd ⚙ update před 5 roky
copying a7bdb5314b ⚖ copying: asl2.0 to gplv3+ před 5 roky
flake.lock 3b4facd9e4 nixos: update nixos-unstable před 3 roky
flake.nix 2cdfc814df update před 3 roky
readme.md cb7a8cb480 📝 readme: keep some installation instructions here for now před 5 roky

readme.md

Installation

  1. Download latest nixos-unstable image from https://nixos.org/channels/nixos-unstable.

  2. Make a bootable usb. For example:

    # Obviously run `lsblk -f` first to get the correct 'of' path to your usb.
    #
    # NOTE: Not using the correct 'of' path could erase your hard drive so be
    # very careful to use the right one!
    dd if=path/to/image of=/dev/sdb # As root.
    
  3. Boot into live image and log in as root with empty password (if it doesn't automatically log you in).

  4. Get internet access.

    1. ip a will bring up a list of network interfaces.

    2. iwlist <interface> scan | less to see if your wifi is available.

    3. Edit /etc/wpa_supplicant.conf with your network details.

    4. wpa_supplicant -B -i<interface> -c/etc/wpa_supplicant.conf -Dwext.

    5. dhclient <interface> or dhcpcd <interface> if dhclient command doesn't exist.

  5. Partition and format disks.

    • lsblk -f lists your devices.

    • mkfs.ext4 -L nixos <device> to format a device.

    • mkswap -L swap <device> to make a swap partition.

  6. (optional) Activate swap device: swapon <device>.

  7. Mount target filesystems under /mnt:

    mount /dev/disk/by-label/nixos /mnt
    
  8. Generate /etc/nixos configuration files:

    nixos-generate-config --root /mnt
    
  9. Inspect the generated /mnt/etc/configuration.nix to see if any bootloader options were put in there to hint on which bootloader options to use.

  10. If using systemd-boot, mount the boot partition under /mnt/boot and perform step 8 again to get an updated hardware-configuration.nix with the /mnt/boot filesystem entry.

  11. Backup hardware-configuration.nix:

    cp /mnt/etc/nixos/hardware-configuration.nix \
       /mnt/etc/nixos/hardware-configuration.modified.nix
    
  12. Edit hardware-configuration.modified.nix to put the correct bootloader options in it, and also put system.stateVersion from configuration.nix into hardware-configuration.modified.nix.

  13. Copy wpa_supplicant.conf to target filesystem:

    cp /etc/wpa_supplicant.conf /mnt/etc
    

    This allows wpa_supplicant to automatically connect to internet when rebooting into the installed system.

  14. nixos-install -I nixos-config=https://raw.githubusercontent.com/vyp/dots/master/nixos/minimal.nix

  15. Reboot and login with root and set password for user "u":

    passwd u
    
  16. Login as user and retrieve this repository:

    git clone https://vyp@github.com/vyp/dots
    
  17. ./dots/bootstrap.

  18. sudo nixos-rebuild boot and reboot (with sudo shutdown now).