HulkSmashBurgers

joined 1 year ago

Now that's a murder mitten!

Way to go Kamala!

Yeah I was wondering about that too. Hopefully the project is still alive.

[–] HulkSmashBurgers@reddthat.com 20 points 6 days ago (4 children)

I think the animated spider man movies are better than the live action ones imho.

In this case don't you mean purrity?

*among other things

Gotta send out the e-meows.

 

Is there a way to export data from the app (saved posts, etc.)? Thanks.

Yeah seems like it's trying to make guix more user friendly which is great.

Linux is great for reserecting old hardware! I had an old gaming pc I built back in 2009 (had to replace graphics card) onto which I installed guix. Now I have a raid 1 store, samba network share, and jellyfin server!

Behold Fungus Robungous!

[–] HulkSmashBurgers@reddthat.com 18 points 1 week ago (1 children)

I think it'd be great if the tax rate on gains (when selling stock) was based on the entire value of all stocks a person has.

So if Elon sell some stock (a dollar or a billion), his gains tax rate is higher than someone selling stock whose entire stock value is less.

It'd also be nice if retirement accounts (401k, Ira) were excluded from this.

 

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.

 

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.

1
submitted 8 months ago* (last edited 8 months ago) by HulkSmashBurgers@reddthat.com to c/guix@lemmy.ml
 

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

view more: next ›