From ebe4be16c7f848026d9eb48f1ea1fc523b5c895c Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 11 Apr 2025 19:23:10 -0600 Subject: [PATCH 1/5] remove dead COSMIC packages --- hosts/x86_64/garrus/configuration.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hosts/x86_64/garrus/configuration.nix b/hosts/x86_64/garrus/configuration.nix index fddca66..ff2bc79 100644 --- a/hosts/x86_64/garrus/configuration.nix +++ b/hosts/x86_64/garrus/configuration.nix @@ -8,14 +8,6 @@ environment.systemPackages = with pkgs; [ system76-keyboard-configurator firmware-manager - - # COSMIC Utils - tweaks - forecast - tasks - calculator - examine - #stellarshot ]; } From 404614e3e18192851cebe2b8409bb41918187ffb Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 11 Apr 2025 19:26:17 -0600 Subject: [PATCH 2/5] update packages --- configuration.nix | 1 + home.nix | 6 ------ 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/configuration.nix b/configuration.nix index df3e347..0d3947c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -78,6 +78,7 @@ # GUI tools firefox + zed-editor # Flake CLI tools inputs.pinix.packages.${system}.default diff --git a/home.nix b/home.nix index c6adf49..f6bcdaf 100644 --- a/home.nix +++ b/home.nix @@ -18,14 +18,8 @@ home.packages = with pkgs; [ deja-dup - #discord #disabled for aarch64 libreoffice-fresh signal-desktop - tuba - #youtube-music #disabled for aarch64 - - quickemu - spice-gtk ]; programs.bash = { From e31915f11a36bec1ce57c2c216f396978fae465a Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 11 Apr 2025 20:36:50 -0600 Subject: [PATCH 3/5] update kernel for garrus --- hosts/x86_64/garrus/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/x86_64/garrus/configuration.nix b/hosts/x86_64/garrus/configuration.nix index ff2bc79..9cd4f34 100644 --- a/hosts/x86_64/garrus/configuration.nix +++ b/hosts/x86_64/garrus/configuration.nix @@ -1,6 +1,9 @@ { config, pkgs, ... }: { + # lemp13 needs newer than the 6.6 + boot.kernelPackages = pkgs.linuxPackages_latest; + # Name your host machine networking.hostName = "garrus"; From 51d7638eb00535d69be60bd306a4d84dd41d19cc Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 11 Apr 2025 21:07:29 -0600 Subject: [PATCH 4/5] set helix theme --- home.nix | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/home.nix b/home.nix index f6bcdaf..4e88279 100644 --- a/home.nix +++ b/home.nix @@ -61,28 +61,12 @@ }; }; - dconf.settings = { - "org/gnome/shell" = { - favorite-apps = [ "org.gnome.Console.desktop" "nautilus.desktop" "firefox.desktop" "signal-desktop.desktop" ]; - }; - "org/gnome/desktop/background" = { - picture-uri-dark = "file:///home/aaronh/Pictures/Walls/wallhaven-2y2wg6.png"; - }; - "org/gnome/desktop/interface" = { - clock-show-seconds = true; - clock-show-weekday = true; - color-scheme = "prefer-dark"; - enable-hot-corners = false; - }; - "org/gnome/desktop/peripherals/touchpad" = { - tap-to-click = true; - }; - "org/gnome/desktop/vm/keybindings" = { - close = ["q"]; - }; - }; - - programs.gh.enable = true; + programs.helix = { + enable = true; + settings = { + theme = "ferra"; + }; + } # Let Home Manager install and manage itself. programs.home-manager.enable = true; From 016af250ddd03c8efac70b55ebc6a1fd4b591bb6 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 12 Apr 2025 13:22:32 -0600 Subject: [PATCH 5/5] Edit home.nix --- home.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home.nix b/home.nix index 4e88279..9edbfd2 100644 --- a/home.nix +++ b/home.nix @@ -66,7 +66,7 @@ settings = { theme = "ferra"; }; - } + }; # Let Home Manager install and manage itself. programs.home-manager.enable = true;