This commit is contained in:
John Lancaster
2024-12-09 17:38:18 -06:00
parent fdb9d8717d
commit afe391ef8e
4 changed files with 29 additions and 10 deletions

View File

@@ -26,12 +26,12 @@
userSettings = rec {
username = "panoptes";
gitUserName = "John Lancaster";
# gitUserEmail = "32917998+jsl12@users.noreply.github.com";
gitUserEmail = "asdfasdf@asdf.com";
gitUserEmail = "32917998+jsl12@users.noreply.github.com";
# gitUserEmail = "asdfasdf@asdf.com";
};
systemSettings = rec {
hostname = "panoptes-nix";
hostName = "panoptes-nix";
system = "x86_64-linux";
timeZone = "America/Chicago";
locale = "en_US.UTF-8";
@@ -43,7 +43,7 @@
in
{
nixosConfigurations = {
"${systemSettings.hostname}" = nixosSystem {
"${systemSettings.hostName}" = nixosSystem {
system = systemSettings.system;
specialArgs = {
inherit inputs;
@@ -65,8 +65,8 @@
homeConfigurations = {
useGlobalPkgs = true;
"${userSettings.username}" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
"panoptes@panoptes-nix" = home-manager.lib.homeManagerConfiguration {
inherit pkgs stateVersion;
specialArgs = {
inherit inputs;
inherit outputs;
@@ -74,8 +74,8 @@
inherit systemSettings;
};
modules = [
./homeManagerModules/home.nix
({...}: {home.stateVersion = "${stateVersion}";})
./home.nix
# ({...}: {home.stateVersion = "${stateVersion}";})
];
};
};