Update: 08/18/2024 06:51:28 PM
This commit is contained in:
6
user/apps/games/mangohud.nix
Normal file
6
user/apps/games/mangohud.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
mangohud
|
||||
];
|
||||
}
|
||||
6
user/apps/media/mpv.nix
Normal file
6
user/apps/media/mpv.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
mpv
|
||||
];
|
||||
}
|
||||
6
user/apps/media/vlc.nix
Normal file
6
user/apps/media/vlc.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
vlc
|
||||
];
|
||||
}
|
||||
6
user/apps/media/yt-dlp.nix
Normal file
6
user/apps/media/yt-dlp.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
yt-dlp
|
||||
];
|
||||
}
|
||||
6
user/apps/utils/cava.nix
Normal file
6
user/apps/utils/cava.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
cava
|
||||
];
|
||||
}
|
||||
6
user/apps/utils/fzf.nix
Normal file
6
user/apps/utils/fzf.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
fzf
|
||||
];
|
||||
}
|
||||
6
user/apps/utils/keepassxc.nix
Normal file
6
user/apps/utils/keepassxc.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
keepassxc
|
||||
];
|
||||
}
|
||||
6
user/apps/utils/owncloud-client.nix
Normal file
6
user/apps/utils/owncloud-client.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
owncloud-client
|
||||
];
|
||||
}
|
||||
6
user/apps/utils/zoxide.nix
Normal file
6
user/apps/utils/zoxide.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
zoxide
|
||||
];
|
||||
}
|
||||
16
user/dev/editor/neovim.nix
Normal file
16
user/dev/editor/neovim.nix
Normal 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
6
user/dev/tools/gitui.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gitui
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user