This commit is contained in:
2025-03-07 11:27:13 -05:00
parent 2f0a3767a7
commit 2e63f39697
19 changed files with 102 additions and 54 deletions

View File

@@ -0,0 +1,13 @@
{
pkgs,
config,
...
}: {
programs = {
direnv = {
enable = true;
enableZshIntegration = true; # see note on other shells below
nix-direnv.enable = true;
};
};
}

View File

@@ -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"

View File

@@ -0,0 +1,11 @@
{
pkgs,
config,
...
}: {
programs = {
jq = {
enable = true;
};
};
}

View File

@@ -0,0 +1,11 @@
{
pkgs,
config,
...
}: {
programs = {
lazygit = {
enable = true;
};
};
}

View File

@@ -0,0 +1,11 @@
{
pkgs,
config,
...
}: {
programs = {
man = {
enable = true;
};
};
}

View File

@@ -6,4 +6,5 @@
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}

View File

@@ -3,7 +3,7 @@
config,
...
}: {
hardware.opengl = {
hardware.graphics = {
enable = true;
};