From df8f37bb908a19fe03cee8656595e41bdbd03ebb Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 5 Apr 2025 19:27:24 -0600 Subject: [PATCH 1/4] reorder system packages and add some notes --- configuration.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index c9a14eb..df3e347 100644 --- a/configuration.nix +++ b/configuration.nix @@ -60,9 +60,9 @@ environment.systemPackages = with pkgs; [ + # nixpkgs CLI tools avahi dmidecode - firefox freshfetch git git-lfs @@ -73,8 +73,13 @@ unzip wget xz + zellij zlib + + # GUI tools + firefox + # Flake CLI tools inputs.pinix.packages.${system}.default ]; From c2ba0ba0e990c6b6dba29fef324f3585b7a5fc77 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 5 Apr 2025 19:43:51 -0600 Subject: [PATCH 2/4] fix COSMIC settings --- README.md | 2 +- desktops/cosmic.nix | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cceb9bf..c61d206 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ These files are for the systems themselves such as my custom desktop, Thinkpad X | Hostname | About | Role | Architecture | | ----------:| -----:| ----:| ---------------:| | `shepard` | System76 nebula49 | 🖥️ | `x86_64-linux` | -| `edi` | custom build for homelab stuff | ☁️ | `x86_64-linux` | +| `edi` | Home Server | ☁️ | `x86_64-linux` | | `garrus` | System76 Lemur Pro (lemp13) | 💻 | `x86_64-linux` | | `drack` | Thinkpad X13s | 💻 | `aarch64-linux` | | `jaal` | PineBook Pro | 💻 | `aarch64-linux` | diff --git a/desktops/cosmic.nix b/desktops/cosmic.nix index 9b15a62..deb2e7e 100644 --- a/desktops/cosmic.nix +++ b/desktops/cosmic.nix @@ -2,8 +2,7 @@ { # COSMIC - services.xserver = { - enable = true; + services = { displayManager.gdm.enable = true; desktopManager.cosmic.enable = true; }; From 7100f5e3a6990ed2d218eb861e595f6c73e19b04 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 5 Apr 2025 20:31:20 -0600 Subject: [PATCH 3/4] add more replacement services --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c61d206..ad2c951 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,12 @@ These files are for the systems themselves such as my custom desktop, Thinkpad X | Service | Replacement | | ---------:| -----------:| -| Immich | Google Photos | -| Navidrome | Google Music | -| Jellyfin | Netflix | +| `Immich` | `Google Photos` | +| `Navidrome` | `Google Music` | +| `Jellyfin` | `Netflix` | +| `Audiobookshelf` | `Audible` | +| `Kavita` | `Google Play Books` | +| `Forgejo` | `GitHub` | ### Desktop Nix files: (nix-configs/desktops/) From 38b3bd9cfa8c0f058435afe51d64e9d7e506c5ea Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 5 Apr 2025 20:36:02 -0600 Subject: [PATCH 4/4] swap gdm with cosmic-greeter for COSMIC --- desktops/cosmic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktops/cosmic.nix b/desktops/cosmic.nix index deb2e7e..8baf49b 100644 --- a/desktops/cosmic.nix +++ b/desktops/cosmic.nix @@ -3,7 +3,7 @@ { # COSMIC services = { - displayManager.gdm.enable = true; + displayManager.cosmic-greeter.enable = true; desktopManager.cosmic.enable = true; };