the great update

This commit is contained in:
2025-03-07 17:04:41 +09:00
parent 442f46f622
commit 6216fcd751
77 changed files with 732 additions and 305 deletions

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
cava
];
}

View File

@@ -1,24 +1,29 @@
{ ... }: {
imports = [
./cava
./chromium
./dbeaver
./firefox
./firefox-dev-edition
./freecad
./fzf
./gimp
./gitui
./inkscape
./kdenlive
./keepassxc
./kicad
./libreoffice-fresh
./mangohud
./minecraft
./mpv
./obs-studio
./owncloud-client
./pandoc
./qtcreator
./thunderbird
./tldr
./vlc
./yt-dlp
./zoxide
];
}

View File

@@ -3,4 +3,8 @@
environment.systemPackages = with pkgs; [
firefox-devedition-bin
];
environment.variables = {
MOZ_ENABLE_WAYLAND = 1;
};
}

View File

@@ -3,4 +3,8 @@
environment.systemPackages = with pkgs; [
firefox
];
environment.variables = {
MOZ_ENABLE_WAYLAND = 1;
};
}

View File

@@ -0,0 +1,3 @@
{ pkgs, ... }: {
environment.systemPackages = [ pkgs.freecad ];
}

View File

@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
fzf
];
environment.variables = {
FZF_ALT_C_OPTS = ''
--walker-skip .git,node_modules,target
--preview 'tree -C {}'
'';
FZF_COMPLETION_OPTS = "--border --info=inline";
FZF_COMPLETION_PATH_OPTS = "--walker file,dir,follow,hidden";
FZF_COMPLETION_DIR_OPTS = "--walker dir,follow";
};
}

View File

@@ -1,6 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kdenlive
kdePackages.kdenlive
];
}

View File

@@ -0,0 +1,3 @@
{ pkgs, ... }: {
environment.systemPackages = [ pkgs.kicad ];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
pandoc
];
}

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
zoxide
];
}