From 29453240edeff924cb1ee8c407be3526307e0f28 Mon Sep 17 00:00:00 2001 From: kenji Date: Wed, 13 Aug 2025 15:01:11 -0500 Subject: [PATCH] vanilla changes with added nvim --- flake.nix | 2 ++ hosts/vanilla/configuration.nix | 13 +++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/flake.nix b/flake.nix index ce2f568..ef3b208 100644 --- a/flake.nix +++ b/flake.nix @@ -50,6 +50,7 @@ darwin, chaotic, jovian, + nixovim, illogical-impulse, ... } @ inputs: let @@ -75,6 +76,7 @@ specialArgs = args; modules = [ ./hosts/vanilla/configuration.nix + # nixovim.packages.${system}.full ]; }; }; diff --git a/hosts/vanilla/configuration.nix b/hosts/vanilla/configuration.nix index 451ec76..ce35108 100644 --- a/hosts/vanilla/configuration.nix +++ b/hosts/vanilla/configuration.nix @@ -11,7 +11,6 @@ }: { imports = [ # Include the results of the hardware scan. - inputs.nixovim.packages.${pkgs.system}.full ./hardware-configuration.nix ]; @@ -21,7 +20,7 @@ # networking.hostName = "nixos"; # Define your hostname. # Pick only one of the below networking options. - networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. # Set your time zone. @@ -34,9 +33,10 @@ # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; console = { - font = "Lat2-Terminus16"; - keyMap = "us"; - useXkbConfig = true; # use xkb.options in tty. + earlySetup = false; + font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz"; + packages = with pkgs; [terminus_font]; + useXkbConfig = true; }; # Enable the X11 windowing system. @@ -61,7 +61,7 @@ # services.libinput.enable = true; # Define a user account. Don't forget to set a password with ‘passwd’. - users.users.${myConfig.essential.Username} = { + users.users.${myConfig.essentials.Username} = { isNormalUser = true; extraGroups = ["wheel"]; # Enable ‘sudo’ for the user. packages = with pkgs; [ @@ -74,6 +74,7 @@ # List packages installed in system profile. # You can use https://search.nixos.org/ to find more packages (and options). environment.systemPackages = with pkgs; [ + inputs.nixovim.packages.${system}.full vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. wget ];