Add packages

This commit is contained in:
Oliver Davies 2025-04-22 10:46:51 +01:00
parent beb23a08c4
commit f85d4968ed

View file

@ -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
];
}