From 1c6d700768ca18b48662dd555329daa999442bd4 Mon Sep 17 00:00:00 2001 From: kptltd00m Date: Sun, 12 Jul 2026 23:27:36 +0200 Subject: [PATCH] enables dynamic linking and added extraGroups to user --- hosts/home-pc/configuration.nix | 1 + hosts/laptop/configuration.nix | 1 + nixos/users.nix | 2 ++ 3 files changed, 4 insertions(+) diff --git a/hosts/home-pc/configuration.nix b/hosts/home-pc/configuration.nix index 4d78438..cf8d720 100644 --- a/hosts/home-pc/configuration.nix +++ b/hosts/home-pc/configuration.nix @@ -31,6 +31,7 @@ ./variables.nix ]; + programs.nix-ld.enable = true; #Dynamic Linking home-manager.users."${config.var.username}" = import ./home.nix; services.flatpak.enable = true; # Don't touch this diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index cb5a9d0..0fdd732 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -25,6 +25,7 @@ ]; + programs.nix-ld.enable = true; #Dynamic Linking home-manager.users."${config.var.username}" = import ./home.nix; services.flatpak.enable = true; # Don't touch this diff --git a/nixos/users.nix b/nixos/users.nix index f33b2a1..b915fc0 100644 --- a/nixos/users.nix +++ b/nixos/users.nix @@ -16,6 +16,8 @@ in { extraGroups = [ "networkmanager" "wheel" + "video" + "render" ]; }; };