feat: add discord, gparted and polkit

This commit is contained in:
EinEtwas 2024-10-14 07:55:10 +02:00
parent fb1f04dd8f
commit 3fc11d51fb
2 changed files with 12 additions and 0 deletions

View file

@ -20,6 +20,7 @@
imports = [ imports = [
./hyprland.nix ./hyprland.nix
./git.nix ./git.nix
./packages.nix
]; ];
}; };
}; };

11
home/packages.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, home-manager, ... }:
{
home.packages = with pkgs; [
# Discord
vesktop
# Partition Management
gparted
# Authentication agent
polkit_gnome
];
}