Skip to content

Commit a9cf9e5

Browse files
committed
snapshot
1 parent 050bf28 commit a9cf9e5

11 files changed

Lines changed: 11311 additions & 655 deletions

File tree

flake.lock

Lines changed: 11288 additions & 628 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

home/base/gui/ai/cherry-studio.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
}:
88
{
99
home.packages = [
10-
pkgs-latest.cherry-studio
10+
pkgs.cherry-studio
1111
];
1212
}

home/base/tui/dev-tools.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
# git related
7272
pre-commit
73-
pkgs-stable.commitizen # Tool to create committing rules for projects, auto bump versions, and generate changelogs
73+
# commitizen # Tool to create committing rules for projects, auto bump versions, and generate changelogs
7474
];
7575

7676
programs = {

home/droid/development.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ in
1818
patch
1919
direnv
2020

21-
neofetch
21+
# 'neofetch' has been removed because it is unmaintained upstream.
22+
# neofetch
2223
fastfetch
2324
openssh
2425
curl

home/droid/font.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
# dejavu_fonts
4040
# vista-fonts-chs # ms yahei
4141
# Maple Mono (Ligature TTF unhinted)
42-
pkgs-latest.maple-mono.truetype
42+
maple-mono.truetype
4343
# Maple Mono NF (Ligature unhinted)
44-
pkgs-latest.maple-mono.NF-unhinted
44+
maple-mono.NF-unhinted
4545
# Maple Mono NF CN (Ligature unhinted)
46-
pkgs-latest.maple-mono.NF-CN-unhinted
46+
maple-mono.NF-CN-unhinted
4747
];
4848

4949
fonts.fontconfig.enable = true;

home/droid/system-tools.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
hdparm # for disk performance, command
3737
#dmidecode # a tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard
3838

39-
neofetch
39+
# 'neofetch' has been removed because it is unmaintained upstream.
40+
# neofetch
4041
fastfetch
4142
ranger # terminal file manager(batteries included, with image preview support)
4243

hosts/idols-ai/ai/ollama.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ in
99
{
1010
services.ollama = rec {
1111
enable = true;
12-
package = pkgs-latest.ollama-cuda;
12+
package = pkgs.ollama-cuda;
1313
host = "0.0.0.0";
1414
port = 11434;
1515
# home = "/var/lib/ollama";

hosts/idols-ai/hardware-configuration.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
lib,
77
pkgs,
88
pkgs-latest,
9+
myvars,
910
modulesPath,
1011
...
1112
}:

modules/droid/font.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
# Test Required
99
# cause sshd broken
1010
# user.shell = "${pkgs.fish}/bin/fish";
11-
terminal.font = "${pkgs-latest.maple-mono.NF-CN-unhinted}/share/fonts/truetype/MapleMono-NF-CN-Regular.ttf";
11+
terminal.font = "${pkgs.maple-mono.NF-CN-unhinted}/share/fonts/truetype/MapleMono-NF-CN-Regular.ttf";
1212
}

modules/nixos/base/packages.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
# List packages installed in system profile. To search, run:
88
# $ nix search wget
99
environment.systemPackages = with pkgs; [
10-
neofetch
10+
# 'neofetch' has been removed because it is unmaintained upstream.
11+
# neofetch
1112
inxi
1213
python311Packages.gpustat
1314
cpu-x

0 commit comments

Comments
 (0)