Devices.md
... ...
@@ -1,4 +1,4 @@
1
-Some information on the devices that I use daily. Donations for better hardware can be done though Twitch or though GPay (email me or reach me on Discord for more information)
1
+Some information on the devices that I use daily.
2 2
3 3
## Main Desktop Setup
4 4
... ...
@@ -44,10 +44,6 @@ Some information on the devices that I use daily. Donations for better hardware
44 44
- Ubuntu 25.04 512 GB SSD M.2 2242 NVMe Gen 4
45 45
- RAM: 16GB LPDDR4X-4266MHz
46 46
47
-- [Pinebook Pro](https://www.pine64.org/pinebook-pro/)
48
- - Hostname: Jaal
49
- - NixOS 24.05: 128GB eMMC
50
-
51 47
## Server
52 48
53 49
- [2U Micro ATX Rackmount Chassis](https://www.amazon.com/dp/B0D41ZJH3D)
... ...
@@ -59,15 +55,9 @@ Some information on the devices that I use daily. Donations for better hardware
59 55
- NixOS 25.05: Samsung 256GB M.2 NVMe
60 56
- Media: 2x WD 1TB 3.5" SATA
61 57
62
-## Tablets
58
+## Tablet
63 59
64
-- [Google Slate i5](https://support.google.com/pixelslate/answer/9131920?hl=en)
65
- - Hostname: Grunt
66
- - Firmware: Coreboot 24.05
67
- - OS: NixOS 24.11
68
-- iPad Mini 7th Gen
69
-- [Lenovo IdeaPad Duet](https://www.google.com/intl/en_us/chromebook/device/lenovo-chromebook-duet/)
70
- - OS: postmarketOS v24.06 with GNOME
60
+- [iPad mini 7th Gen](https://en.wikipedia.org/wiki/IPad_Mini_(7th_generation)
71 61
72 62
## Keyboards
73 63
... ...
@@ -79,7 +69,7 @@ Some information on the devices that I use daily. Donations for better hardware
79 69
- Switches: Kailh Royal
80 70
- [System76 Launch Lite](https://tech-docs.system76.com/models/launch_lite_1/README.html)
81 71
- Keycaps: Original
82
- - Switches: Kailh Copper
72
+ - Switches: [Kailh Copper](https://www.microcenter.com/product/649468/glorious-kailh-mechanical-keyboard-switches-copper)
83 73
84 74
## Phones
85 75
Linux/nix-tips-and-tricks.md
... ...
@@ -1,11 +1,19 @@
1 1
# Nix Package Manager
2 2
3
-## Managing packages
3
+## Add packages
4 4
5 5
```bash
6 6
nix-env -iA nixpkgs.<packagename>
7 7
```
8 8
9
+# Nix Package Manager from Determinate Nix
10
+
11
+## Add packages
12
+
13
+```bash
14
+nix profile add nixpkgs#package-name
15
+```
16
+
9 17
# NixOS
10 18
11 19
## Updating a Flake based system
... ...
@@ -18,18 +26,7 @@ sudo nixos-rebuild switch
18 26
## Updating a non-Flake based system
19 27
20 28
```bash
21
-sudo nixos-rebuild switch
29
+sudo nixos-rebuild switch --upgrade
22 30
```
23 31
24 32
You can use `boot` instead of `switch` for the system to boot into the new generation on reboot instead.
25
-
26
-# Contributing to nixpkgs
27
-
28
-## Updating packages that you maintain
29
-
30
-```bash
31
-git checkout -b bump-mypkg
32
-nix-shell -p nix-update --run 'nix-update <pkg> --commit'
33
-nix-build -A <pkg> # ensure it builds
34
-git push <fork> bump-mypkg
35
-```
... ...
\ No newline at end of file