vanilla changes with added nvim

This commit is contained in:
kenji
2025-08-13 15:01:11 -05:00
parent c3526e6eac
commit 29453240ed
2 changed files with 9 additions and 6 deletions
+2
View File
@@ -50,6 +50,7 @@
darwin, darwin,
chaotic, chaotic,
jovian, jovian,
nixovim,
illogical-impulse, illogical-impulse,
... ...
} @ inputs: let } @ inputs: let
@@ -75,6 +76,7 @@
specialArgs = args; specialArgs = args;
modules = [ modules = [
./hosts/vanilla/configuration.nix ./hosts/vanilla/configuration.nix
# nixovim.packages.${system}.full
]; ];
}; };
}; };
+7 -6
View File
@@ -11,7 +11,6 @@
}: { }: {
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
inputs.nixovim.packages.${pkgs.system}.full
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
@@ -21,7 +20,7 @@
# networking.hostName = "nixos"; # Define your hostname. # networking.hostName = "nixos"; # Define your hostname.
# Pick only one of the below networking options. # 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. networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone. # Set your time zone.
@@ -34,9 +33,10 @@
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
console = { console = {
font = "Lat2-Terminus16"; earlySetup = false;
keyMap = "us"; font = "${pkgs.terminus_font}/share/consolefonts/ter-132n.psf.gz";
useXkbConfig = true; # use xkb.options in tty. packages = with pkgs; [terminus_font];
useXkbConfig = true;
}; };
# Enable the X11 windowing system. # Enable the X11 windowing system.
@@ -61,7 +61,7 @@
# services.libinput.enable = true; # services.libinput.enable = true;
# Define a user account. Don't forget to set a password with passwd. # 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; isNormalUser = true;
extraGroups = ["wheel"]; # Enable sudo for the user. extraGroups = ["wheel"]; # Enable sudo for the user.
packages = with pkgs; [ packages = with pkgs; [
@@ -74,6 +74,7 @@
# List packages installed in system profile. # List packages installed in system profile.
# You can use https://search.nixos.org/ to find more packages (and options). # You can use https://search.nixos.org/ to find more packages (and options).
environment.systemPackages = with pkgs; [ 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. vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
]; ];