From aea672b11741c563c4069a6f05df114d2b87826d Mon Sep 17 00:00:00 2001 From: shibazaki Date: Tue, 21 Jan 2025 10:19:22 +0100 Subject: [PATCH] gcc --- nixos/system/libgcc.nix | 9 +++++++++ users/twelve/configuration.nix | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 nixos/system/libgcc.nix 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? } -