Thanks a ton for these videos. It's much easier to get the over all concept of Nixos. All the questions I had (like how do I define user packages? How do I version the config) are already answered by you.
@SherubThakur3 жыл бұрын
This was extremely helpful, thanks. Eagerly waiting for the flake related videos that you mentioned here.
@sarveshkardekar48502 жыл бұрын
Your keyboard speaks louder than you XD, consider adding subtitles, I am grateful for these videos tho, keep up the good work!
@ian.moran113 жыл бұрын
These videos are great! Really easy to follow and super useful. Thanks Wil!
@henrikstanleymortensen42953 жыл бұрын
Great content Wil. I was looking around for a source of videos to get started with the Nix eco system to compliment using Nix Pills, and so far your videos have been great. Thank you so much for the work you put into these. Subscribed and I will eagerly be awaiting your next video :)
@TheStuzenz3 жыл бұрын
I am really enjoying your tutorials - thank you! Interesting. I decided I was going to import my gpg private key over from the arch linux setup since I am trying to largely replicate in NixOS. I found I had a `gpg no pin entry` related error coming up. Did a bit of googling, not realising you were about to talk about a solution for a problem - that could have been similar to my problem. I didn't end up needing to change anything in the home.nix configuration I ended up going into our configuration.nix file and bringing into the config the commented out lines for the `programs.gnupg.agent` parameters and then doing a reboot and things worked for me at that point.
@SebastianAnklamm3 жыл бұрын
Amaze-balls. Really looking forward to more of this. Thank you for the great content.
@ZaarsShed3 жыл бұрын
Thanks for creating excellent tutorial. Quick question: Why care about popd at the end of your scripts at 11:17?
@miyalys2 жыл бұрын
Yes, unless you source the script there's no need for pushd/popd and cd can just be used. At least in the states the scripts are in here.
@Becoming-Human3 жыл бұрын
Awesome sauce! Thank you, Wil.
@dmnx23 жыл бұрын
The content is great. Your voice sounds very faded though; I can head the keyboard louder than your voice :D
@wilfridtaylor3 жыл бұрын
I have made some changes to my audio setup which should fix this in future videos :).
@Ramtechbytes6 ай бұрын
Thanks for the tutorial it really helped alot!
@maninalift3 жыл бұрын
These videos have been very helpful. Something that I find odd is that you copy across the hardware-configuration.nix into your repo. I'm not sure how this will work with configuring multiple machines from the same repo. Perhaps a later video will explain.
@wilfridtaylor3 жыл бұрын
I plan to make some videos on this later. Main way I solve this is by migrating over to flakes and also breaking chunks of config up into roles and selectively applying those roles to machines. I will create a video about this at some point.
@madsnygaard6444 Жыл бұрын
Noob question: Should the username you setup in dotfiles be the same as the Github account username?
@eritert3 жыл бұрын
Yea this is a great video, subbed
@rekcah2 жыл бұрын
Thanks for your video, it really helps
@jaydelux2086 Жыл бұрын
Great video. Thank you.
@rachitverma22853 ай бұрын
Time stamps would be a great idea.
@EmilHarder Жыл бұрын
Nice videos, but that poor enter key though..
@JOHNSMITH-ve3rq Жыл бұрын
Damn it this sound is ridiculous dude!!!!
@junialter Жыл бұрын
I'm sorry but this is too silent, can barely understand.
@Virus000000000000013 жыл бұрын
god damn that keyboard noises are annoying
@kiaragrouwstra42502 жыл бұрын
transcribed some of the files in this video: # apply-system.sh #!/bin/sh pushd ~/.dotfiles sudo nixos-rebuild switch -I nixos-config=./system/configuration.nix popd # update-system.sh #!/bin/sh sudo nix-channel --update # apply-users.sh #!/bin/sh pushd ~/.dotfiles home-manager switch -f ./users/wil/home.nix popd # update-user.sh #!/bin/sh nix-channel --update # .gitattributes .secrets/** filter=git-crypt diff=git-crypt