Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tolgaerok/nixos-kde-2405
My Personal nixos 24-05 KDE (Nvidia) repo
https://github.com/tolgaerok/nixos-kde-2405
hp kde nixos nixos-configuration nixos-nvidia nvidia
Last synced: 26 days ago
JSON representation
My Personal nixos 24-05 KDE (Nvidia) repo
- Host: GitHub
- URL: https://github.com/tolgaerok/nixos-kde-2405
- Owner: tolgaerok
- License: gpl-3.0
- Created: 2024-06-30T12:21:57.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-13T16:02:49.000Z (4 months ago)
- Last Synced: 2024-09-28T09:02:55.900Z (about 1 month ago)
- Topics: hp, kde, nixos, nixos-configuration, nixos-nvidia, nvidia
- Language: Nix
- Homepage:
- Size: 886 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
My NixOs 24.05 environment, KDE & Nvidia
#### My NixOS GNOME 24.05 also available !
```bash
https://github.com/tolgaerok/nixos-2405-gnome
```
#![nixos-2405xcf](https://github.com/tolgaerok/nixos-kde-2405/assets/110285959/8b116fed-97b8-4c4a-8fff-84eb33ac25bc)
Device
Specification
BLUE-TOOTH
REALTEK 5G
CPU
Intel(R) Core(TM) i7-4770 CPU @ 3.40GHz x 8 (Haswell)
GPU
NVIDIA GeForce GT 1030/PCIe/SSE2
MODEL
HP EliteDesk 800 G1 SFF
MOTHERBOARD
Intel® Q87
NETWORK
Intel Corporation Wi-Fi 6 AX210/AX211/AX411 160MHz
RAM
28 GB DDR3
SATA
SAMSUNG SSD 870 EVO 500GB
# Notes:
### Update NIXOS to 24.11 - Latest Version.
```bash
sudo nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixos
sudo nix-channel --update
sudo nixos-rebuild switch --upgrade
```- Install git and some other programs for KDE 6
- It take some Time.. Just Wait!
```bash
nix-env -iA nixos.git - 53.18 MiB download, 119.48 MiB unpacked
nix-env -iA nixos.hyfetch - 1.80 MiB download, 14.05 MiB unpacked
nix-shell -p kdePackages.plasma-workspace - 1028.37 MiB download, 2834.11 MiB unpacked
nix-shell -p kdePackages.sddm - 3.49 MiB download, 5.62 MiB unpacked
nix-shell -p kdePackages.full - 74.62 MiB download, 232.35 MiB unpacked
nix-env -iA nixos.kdePackages.kwin - 188.33 MiB download, 195.40 MiB unpacked
```
- You can find many programs here for NIX OS
```bash
https://search.nixos.org/packages?channel=unstable
```### BOOT SPACE ERROR
If you are out of space on your /boot partition then follow the steps in the section below- Remove systemd boot, ideally this should be done automatically when systemd-boot is turned off, but 🤷.
```bash
bootctl remove
```
Then:
```bash
sudo rm -rf /boot/loader
```
#### Fix for /boot being out of space
Rebuild but don't switch and store that config
```bash
sudo nixos-rebuild build
```
Run a garbage collection to remove the old system generation
```bash
sudo nix-collect-garbage -d
```
cd into /boot/kernels/
```bash
cd /boot/kernels
```
List the files and then delete any old kernels, DO NOT DELETE NEW ONES, BE VERY CAREFUL
Rebuild and switch
```bash
sudo nixos-rebuild switch
```
Now reboot