update
This commit is contained in:
6
user/apps/media/kdenlive.nix
Normal file
6
user/apps/media/kdenlive.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
kdenlive
|
||||
];
|
||||
}
|
||||
6
user/apps/media/obs-studio.nix
Normal file
6
user/apps/media/obs-studio.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ config, pkgs, libs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
obs-studio
|
||||
];
|
||||
}
|
||||
6
user/apps/office/libreoffice-fresh.nix
Normal file
6
user/apps/office/libreoffice-fresh.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
libreoffice-fresh
|
||||
];
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
nodejs_20
|
||||
nodejs_22
|
||||
];
|
||||
}
|
||||
|
||||
6
user/dev/tools/gh.nix
Normal file
6
user/dev/tools/gh.nix
Normal file
@@ -0,0 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
gh
|
||||
];
|
||||
}
|
||||
@@ -17,5 +17,9 @@ in
|
||||
l = lsCmd;
|
||||
ls = lsCmd;
|
||||
};
|
||||
bashrcExtra = ''
|
||||
eval "$(fzf --bash)"
|
||||
eval "$(zoxide init bash)"
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user