move cli apps
This commit is contained in:
parent
1a0d6e556d
commit
ec5461621f
2 changed files with 19 additions and 20 deletions
|
|
@ -1,13 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
home = {
|
home.packages = with pkgs; [
|
||||||
sessionVariables = {
|
|
||||||
EDITOR = "nvim";
|
|
||||||
BROWSER = "brave";
|
|
||||||
TERMINAL = "kitty";
|
|
||||||
};
|
|
||||||
packages = with pkgs; [
|
|
||||||
vscode # lets see how long you survive as my default code editor
|
vscode # lets see how long you survive as my default code editor
|
||||||
zed-editor
|
zed-editor
|
||||||
|
|
||||||
|
|
@ -40,18 +34,5 @@
|
||||||
portablemc
|
portablemc
|
||||||
ferium
|
ferium
|
||||||
virt-manager
|
virt-manager
|
||||||
|
|
||||||
# CLI tools moved to core/cli.nix
|
|
||||||
go
|
|
||||||
bun
|
|
||||||
#nodejs # pkgs.buildEnv error: two given paths contain a conflicting subpath
|
|
||||||
nodePackages.npm
|
|
||||||
nodePackages.pnpm
|
|
||||||
nodePackages.yarn
|
|
||||||
python314
|
|
||||||
jdk25_headless
|
|
||||||
arduino-cli
|
|
||||||
esptool
|
|
||||||
];
|
];
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,22 @@
|
||||||
{ pkgs, git, rice, ... }: {
|
{ pkgs, git, rice, ... }: {
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
BROWSER = "brave";
|
||||||
|
TERMINAL = "kitty";
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
go
|
||||||
|
bun
|
||||||
|
# nodejs # pkgs.buildEnv error: two given paths contain a conflicting subpath
|
||||||
|
nodePackages.npm
|
||||||
|
nodePackages.pnpm
|
||||||
|
nodePackages.yarn
|
||||||
|
python314
|
||||||
|
arduino-cli
|
||||||
|
esptool
|
||||||
|
];
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
tmux.enable = true;
|
tmux.enable = true;
|
||||||
vim.enable = true;
|
vim.enable = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue