From 7265b2d4d324fe4467ca8c7177fbd7988620ec76 Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Tue, 24 Dec 2024 12:23:27 -0500 Subject: [PATCH] repo restructure --- modules/core.nix | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/modules/core.nix b/modules/core.nix index 472597d..07f836b 100644 --- a/modules/core.nix +++ b/modules/core.nix @@ -1,19 +1,21 @@ {pkgs}: { - system.stateVersion = "24.05"; - time.timeZone = "America/New_York"; - nix.settings.experimental-features = ["flakes" "nix-command"]; - nix.settings.trusted-users = ["@wheel"]; + config = { + system.stateVersion = "24.05"; + time.timeZone = "America/New_York"; + nix.settings.experimental-features = ["flakes" "nix-command"]; + nix.settings.trusted-users = ["@wheel"]; - environment.variables = { - EDITOR = "nvim"; - VISUAL = "nvim"; - NIXPKGS_ALLOW_UNFREE = 1; + environment.variables = { + EDITOR = "nvim"; + VISUAL = "nvim"; + NIXPKGS_ALLOW_UNFREE = 1; + }; + + fonts.packages = with pkgs; [ + font-awesome + nerd-fonts.noto + nerd-fonts.hack + nerd-fonts.jetbrains-mono + ]; }; - - fonts.packages = with pkgs; [ - font-awesome - nerd-fonts.noto - nerd-fonts.hack - nerd-fonts.jetbrains-mono - ]; }