feat(linux) - avoid compiling creative tools, update noctalia & utils.nu

This commit is contained in:
Ryan Yin
2026-06-03 14:07:35 +08:00
parent af0ef6d154
commit 2a26d51eaa
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -1,12 +1,13 @@
{ {
lib, lib,
pkgs, pkgs,
pkgs-stable,
blender-bin, blender-bin,
... ...
}: }:
{ {
home.packages = home.packages =
with pkgs; with pkgs-stable;
[ [
# creative # creative
# gimp # image editing, I prefer using figma in browser instead of this one # gimp # image editing, I prefer using figma in browser instead of this one
@@ -176,8 +176,8 @@
"unreadBadgeColor": "primary" "unreadBadgeColor": "primary"
}, },
{ {
"deviceNativePath": "", "deviceNativePath": "__default__",
"displayMode": "alwaysShow", "displayMode": "icon-always",
"hideIfIdle": false, "hideIfIdle": false,
"hideIfNotDetected": true, "hideIfNotDetected": true,
"id": "Battery", "id": "Battery",
+2
View File
@@ -14,6 +14,8 @@ export def nixos-switch [
# show details via nix-output-monitor # show details via nix-output-monitor
nom build $".#nixosConfigurations.($name).config.system.build.toplevel" --show-trace --verbose nom build $".#nixosConfigurations.($name).config.system.build.toplevel" --show-trace --verbose
nixos-rebuild switch --sudo --flake $".#($name)" --show-trace --verbose nixos-rebuild switch --sudo --flake $".#($name)" --show-trace --verbose
} else if "boot" == $mode {
nixos-rebuild boot --sudo --flake $".#($name)"
} else { } else {
nixos-rebuild switch --sudo --flake $".#($name)" nixos-rebuild switch --sudo --flake $".#($name)"
} }