diff --git a/hosts/lemp11/configuration.nix b/hosts/lemp11/configuration.nix index bd74ec1a..3173ef1d 100644 --- a/hosts/lemp11/configuration.nix +++ b/hosts/lemp11/configuration.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ inputs, pkgs, ... }: { imports = with inputs.self.nixosModules; [ @@ -84,4 +84,9 @@ polkit.enable = true; rtkit.enable = true; }; + + users.users.eric.packages = with pkgs; [ + git + vscodium + ]; }