Init:start-nix

This commit is contained in:
dichgrem
2025-07-22 12:18:15 +08:00
parent 7ce7214a74
commit e57cdd246c
178 changed files with 22667 additions and 1 deletions

5
home/cli/alejandra.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
alejandra
];
}

5
home/cli/atuin.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.atuin = {
enable = true;
};
}

5
home/cli/deadnix.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
deadnix
];
}

6
home/cli/direnv.nix Normal file
View File

@@ -0,0 +1,6 @@
_: {
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
}

5
home/cli/expect.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
expect
];
}

5
home/cli/fastfetch.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.fastfetch = {
enable = true;
};
}

6
home/cli/fd.nix Normal file
View File

@@ -0,0 +1,6 @@
_: {
programs.fd = {
enable = true;
hidden = true;
};
}

5
home/cli/fzf.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.fzf = {
enable = true;
};
}

5
home/cli/just.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
just
];
}

5
home/cli/nom.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
nix-output-monitor
];
}

5
home/cli/nushell.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.nushell = {
enable = true;
};
}

5
home/cli/onefetch.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
onefetch
];
}

5
home/cli/ripgrep.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.ripgrep = {
enable = true;
};
}

5
home/cli/starship.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.starship = {
enable = true;
};
}

5
home/cli/tesseract.nix Normal file
View File

@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
tesseract
];
}

5
home/cli/zoxide.nix Normal file
View File

@@ -0,0 +1,5 @@
_: {
programs.zoxide = {
enable = true;
};
}