This commit is contained in:
Bryan Ramos 2024-05-11 13:21:14 -04:00
parent 23bd15c6cd
commit 08e0feea5d
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 9 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{
description = "My NixOS Configs";
description = "My Nix Configs";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
@ -57,7 +57,9 @@
};
homeConfigurations."work" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./src/system/machines/workstation ];
modules = [
./src/system/machines/workstation
];
};
};
}