Moving Misc Packages To a Module

This commit is contained in:
Annika Merris 2024-05-19 10:19:06 -04:00
parent e8ffedc110
commit cba3703569
2 changed files with 3 additions and 7 deletions

View file

@ -74,13 +74,6 @@ inputs.nixpkgs.lib.nixosSystem {
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
system.stateVersion = "23.11"; system.stateVersion = "23.11";
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
environment.systemPackages = with nixpkgs.pkgs; [
vim
wget
python3
age
sops
];
services.openssh.enable = true; services.openssh.enable = true;
services.flatpak.enable = true; services.flatpak.enable = true;
services.netbird.enable = true; # TODO: Move this to the netbird configs services.netbird.enable = true; # TODO: Move this to the netbird configs

View file

@ -30,6 +30,9 @@
vim vim
wget wget
curl curl
python3
age
sops
]; ];
home-manager.users.${config.user}.home.stateVersion = stateVersion; home-manager.users.${config.user}.home.stateVersion = stateVersion;
home-manager.users.root.home.stateVersion = stateVersion; home-manager.users.root.home.stateVersion = stateVersion;