11 lines
180 B
Nix
11 lines
180 B
Nix
{ pkgs, home-manager, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Discord
|
|
vesktop
|
|
# Partition Management
|
|
gparted
|
|
# Authentication agent
|
|
polkit_gnome
|
|
];
|
|
}
|