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" ]; }; };