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,13 +15,13 @@
system = "x86_64-linux";
modules = [
./system/configuration.nix
./hosts/configuration.nix
home-manager.nixosModules.home-manager {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.useUserPackages = true;
home-manager.users.jordan = import ./users/jordan/home.nix;
}
];
}
];
};
};
};

View File

@ -87,11 +87,13 @@
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
users.defaultUserShell = pkgs.zsh;
# Define a user account. Don't forget to set a password with passwd.
users.users.jordan = {
isNormalUser = true;
description = "Jordan Holt";
extraGroups = [ "networkmanager" "wheel" ];
useDefaultShell = true;
};
# Allow unfree packages