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,
chaotic,
jovian,
nixovim,
illogical-impulse,
...
} @ inputs: let
@@ -75,6 +76,7 @@
specialArgs = args;
modules = [
./hosts/vanilla/configuration.nix
# nixovim.packages.${system}.full
];
};
};
+7 -6
View File
@@ -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
];