diff --git a/nixos/system/libgcc.nix b/nixos/system/libgcc.nix new file mode 100644 index 0000000..0040567 --- /dev/null +++ b/nixos/system/libgcc.nix @@ -0,0 +1,9 @@ +{ + lib, + pkgs, + ... +}: { + environment.systemPackages = with pkgs; [ + gcc + ]; +} diff --git a/users/twelve/configuration.nix b/users/twelve/configuration.nix index 2a0df89..6c59159 100644 --- a/users/twelve/configuration.nix +++ b/users/twelve/configuration.nix @@ -20,10 +20,10 @@ ./../../nixos/system/system-settings.nix ./../../nixos/system/asus.nix ./../../nixos/system/neovim.nix + ./../../nixos/system/libgcc.nix ]; # Global configuration nix.settings.experimental-features = ["nix-command" "flakes"]; system.stateVersion = "24.11"; # Did you read the comment? } -