This commit is contained in:
2024-12-21 00:05:36 +09:00
parent a72167be09
commit 1030d3e37f
13 changed files with 56 additions and 20 deletions

View File

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

View File

@@ -0,0 +1,6 @@
{ config, pkgs, libs, ... }:
{
home.packages = with pkgs; [
obs-studio
];
}

View File

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

View File

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

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

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

View File

@@ -17,5 +17,9 @@ in
l = lsCmd;
ls = lsCmd;
};
bashrcExtra = ''
eval "$(fzf --bash)"
eval "$(zoxide init bash)"
'';
};
}

View File

@@ -64,10 +64,7 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
[ ((modm .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
-- launch dmenu
, ((modm, xK_p ), spawn "dmenu_run")
-- launch gmrun
, ((modm .|. shiftMask, xK_p ), spawn "gmrun")
, ((modm, xK_p ), spawn "rofi -show drun")
-- close focused window
, ((modm .|. shiftMask, xK_c ), kill)