to install nix succesfully on my laptop I had to do the following steps:
guix install nix
nix-channel --list
if nixpkgs is not in channel then add
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
sudo nix-channel --update --verbose
now change the group and ower of /nix
cd /nix/
sudo chown -R {your user name} ./var
sudo chown -R {your user name} ./store
sudo chgrp -R users ./var
sudo chgrp -R users ./store
now update the channels
nix-channel --update --verbose
################################
then install say firefox
nix-env -iA nixpkgs.firefox
Let me check my notes ths weekend and get back to you.
I have fond memories of eating these as a kid.
Come in from playing in the snow from a nor'easter, and mom makes you one of these bad boys with a cup of hot cocoa. Fun times.
Zohran The Destroyer (of class inequality, oligarchy).
I use nix for any packages I can't get from guix repos. So that's an option too.
If he hasn't had a heart from all the hamberders by the next election cycle I guarantee he will run for president again and it'll be up to congress and or the supreme court to stop him. Depending on the make up of those to entities I think there's a chance they would stop him.
Rules for thee but not for me and all that.
The face eating alligator party.
Yeah you all good points. Likely I'm wrong in my assertion.
Fuck you in the neck, RFK.
Holy fuck. Trucker should have his CDL yanked for that level of carelessness.
Hopefully at some point in the future the issue of instances dissapearing won't be as big of a deal
and oligarchy too.
They gave him a badass name by accident 😂🤣!
If fElon wielding a chain saw is a OK then Zohran the Destroyer needs a weapon, for symbolism.
I nominate the axe from the movie Mandy
But he totally does! /s
Yeah the animation was good!
Tap for spoiler
Cool that they connected it to the movie Prey at the end!
Just finished watching this. I liked it!
The doritos makes them nacho average nachos lol!
Even worse are the urinals without dividers.
Based on the book series by Peter Brown, The Wild Robot follows a lost robot

Op-ed: Trump administration grossly underestimates difficulty of their stated task.

Is there a way to export data from the app (saved posts, etc.)? Thanks.
Configure once, copy wherever, run forever

Protonvpn has some instructions to connect via openvpn:
https://protonvpn.com/support/linux-openvpn/
Where I'm stuck is step 3, where the guide has you download a dns update script into /etc/openvpn.
Openvpn doesn't reside in /etc so I'm not sure how to handle that. Any advice? Thanks.
Promoted as “the most insane athletic showdown on Earth,” the Florida Man Games poke fun at the state’s reputation for bizarre stories.

Learn about the power of our decentralized VPN. dVPNs are the future of privacy on the internet, making our online activity private and secure
If this ever gets to the point where I can use this by paying cash for access (and not having to deal with cryptocurrency) I would totally give it a try.
Edit: Turns out for what I'm trying to do (mount luks encrypted raid after start up) only needs the device mapping for the raid drive and not a file-system object.
So I luks encrypted the raid and call a script to open the vault and mount it when I need to.
****** In my system config file I added a raid drive like so:
``` (mapped-devices (list (mapped-device (source (uuid "205e5caa-694f-4457-a2a1-8affa3536e75")) (target "guix") (type luks-device-mapping))
(mapped-device (source (list "/dev/sdb1" "/dev/sdc1")) (target "/dev/md0") (type raid-device-mapping))))
(file-systems (cons* (file-system (mount-point "/") (device "/dev/mapper/guix") (type "ext4") (dependencies (list (list-ref mapped-devices 0))))
(file-system (mount-point "/mnt/nas") (device "/dev/md0") (type "ext4") (mount? #f) (dependencies (list (list-ref mapped-devices 1)))) %base-file-systems))) ```
I'd now like to luks encrypt the raid drive but I'm not sure how to go about doing it. Do I simply make a another mapped-device object, specifying the raid drive uuid and "/dev/md0" as the target:
(mapped-device (source (uuid {raid uuid})) (target "/dev/md0") (type luks-device-mapping))
and then pass that as a dependency to the raid file system object?
Thanks