home config migration
This commit is contained in:
parent
64f4c4f5b0
commit
4bba4871b4
25 changed files with 1296 additions and 16 deletions
50
modules/home/core/apps.nix
Normal file
50
modules/home/core/apps.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ pkgs, ... }: {
|
||||
home = {
|
||||
sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
BROWSER = "brave";
|
||||
TERMINAL = "kitty";
|
||||
};
|
||||
packages = with pkgs; [
|
||||
vscode # lets see how long you survive as my default code editor
|
||||
zed-editor
|
||||
|
||||
discord
|
||||
slack
|
||||
brave
|
||||
|
||||
appimage-run
|
||||
#winboat
|
||||
libreoffice
|
||||
#keepassxc
|
||||
vlc
|
||||
remmina
|
||||
moonlight-qt
|
||||
kdePackages.kdenlive
|
||||
inkscape
|
||||
#davinci-resolve
|
||||
|
||||
(wrapOBS {
|
||||
plugins = with obs-studio-plugins; [
|
||||
wlrobs
|
||||
obs-backgroundremoval
|
||||
obs-pipewire-audio-capture
|
||||
];
|
||||
})
|
||||
|
||||
portablemc
|
||||
ferium
|
||||
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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Reference in a new issue