Update: 08/18/2024 06:51:28 PM

This commit is contained in:
2024-08-18 18:52:15 +09:00
parent 15832ba2f3
commit eebaa957af
22 changed files with 240 additions and 20 deletions

View File

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

6
user/apps/media/mpv.nix Normal file
View File

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

6
user/apps/media/vlc.nix Normal file
View File

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

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
yt-dlp
];
}

6
user/apps/utils/cava.nix Normal file
View File

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

6
user/apps/utils/fzf.nix Normal file
View File

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

View File

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

View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
owncloud-client
];
}

View File

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

View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
neovim
];
programs.neovim = {
enable = true;
vimAlias = false;
viAlias = false;
withRuby = false;
withPython3 = false;
withNodeJs = false;
package = pkgs.neovim-unwrapped;
};
}

6
user/dev/tools/gitui.nix Normal file
View File

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