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 = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
@ -57,7 +57,9 @@
}; };
homeConfigurations."work" = home-manager.lib.homeManagerConfiguration { homeConfigurations."work" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ ./src/system/machines/workstation ]; modules = [
./src/system/machines/workstation
];
}; };
}; };
} }

View file

@ -10,8 +10,7 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
wget curl tree neofetch wget curl tree neofetch
unzip fping calc qrencode unzip fping calc fd pciutils
fd pkg-config pciutils
rsync zip rsync zip
]; ];
}; };

View file

@ -10,6 +10,10 @@ in
home.packages = with pkgs; [ home.packages = with pkgs; [
nix-init nix-init
nix-prefetch-git nix-prefetch-git
nurl
pkg-config
qrencode
]; ];
}; };
} }