update
This commit is contained in:
13
modules/home-manager/direnv.nix
Normal file
13
modules/home-manager/direnv.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
direnv = {
|
||||
enable = true;
|
||||
enableZshIntegration = true; # see note on other shells below
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -7,6 +7,7 @@ inputs,
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
||||
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
||||
settings = {
|
||||
monitor = [
|
||||
"DP-1,1920x1080,0x0,1"
|
||||
|
||||
11
modules/home-manager/jq.nix
Normal file
11
modules/home-manager/jq.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
jq = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
11
modules/home-manager/lazygit.nix
Normal file
11
modules/home-manager/lazygit.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
lazygit = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
11
modules/home-manager/man.nix
Normal file
11
modules/home-manager/man.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs = {
|
||||
man = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user