This commit is contained in:
Miguel Palhas
2024-10-06 14:53:48 +01:00
parent 13aa50dc63
commit 08fb398ce2
4 changed files with 21 additions and 5 deletions
+1
View File
@@ -18,6 +18,7 @@ in
../common/features/pipewire.nix
../common/features/docker.nix
../common/features/fonts.nix
../common/features/nix-ld.nix
];
networking.hostName = "arrakis";
+8
View File
@@ -0,0 +1,8 @@
{ ... }:
{
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
# Add any missing dynamic libraries for unpackaged programs
# here, NOT in environment.systemPackages
];
}
+3 -1
View File
@@ -6,7 +6,9 @@ in
{
programs.hyprland.enable = true;
environments.systemPackages = with pkgs; [ brightnessctl ];
environment.systemPackages = with pkgs; [
brightnessctl
];
services.greetd = {
enable = true;