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
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
kdenlive
];
}
+6
View File
@@ -0,0 +1,6 @@
{ config, pkgs, libs, ... }:
{
home.packages = with pkgs; [
obs-studio
];
}
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
libreoffice-fresh
];
}
+1 -1
View File
@@ -1,6 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
nodejs_20
nodejs_22
];
}
+6
View File
@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
gh
];
}
+4
View File
@@ -17,5 +17,9 @@ in
l = lsCmd;
ls = lsCmd;
};
bashrcExtra = ''
eval "$(fzf --bash)"
eval "$(zoxide init bash)"
'';
};
}
+1 -4
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)