Rename system to hosts

This commit is contained in:
Jordan Holt 2022-12-30 23:18:48 +00:00
parent ef86a39373
commit 60bf26badd
Signed by: jordan
GPG Key ID: B8CFFF61F1CCF520
3 changed files with 6 additions and 4 deletions

View File

@ -15,7 +15,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./system/configuration.nix ./hosts/configuration.nix
home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;

View File

@ -87,11 +87,13 @@
# Enable touchpad support (enabled default in most desktopManager). # Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true; # services.xserver.libinput.enable = true;
users.defaultUserShell = pkgs.zsh;
# 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.jordan = { users.users.jordan = {
isNormalUser = true; isNormalUser = true;
description = "Jordan Holt"; description = "Jordan Holt";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
useDefaultShell = true;
}; };
# Allow unfree packages # Allow unfree packages