From 4d893bed473a57b7baf3288043872b28cf8f204d Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Thu, 22 Jun 2023 13:09:35 -0400 Subject: [PATCH] setup.nix: Add more modules Now locale and timezone will be set. Nix flakes also get enabled and neovim becomes a usable editor. --- setup.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/setup.nix b/setup.nix index 0101c12..d5d561d 100644 --- a/setup.nix +++ b/setup.nix @@ -2,15 +2,21 @@ { imports = [ + ./modules/fish.nix ./modules/fonts.nix - ./modules/stylix.nix ./modules/home-manager.nix + ./modules/locale.nix + ./modules/neovim.nix + ./modules/nix.nix + ./modules/starship.nix + ./modules/stylix.nix + ./modules/timezone.nix + ./modules/wine.nix ]; home-manager.sharedModules = [ ./home/fish.nix ./home/gtk.nix - ./home/starship.nix ./home/xcursor.nix ./home/xresources.nix ]; @@ -48,11 +54,7 @@ }; services.xserver.enable = true; - - hardware.opengl = { - enable = true; - driSupport32Bit = true; - }; + hardware.opengl.enable = true; system.stateVersion = "22.11"; }