10 lines
154 B
Nix
10 lines
154 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
home.packages =
|
|
[ ]
|
|
++ (with pkgs; [
|
|
gnome.gnome-tweaks
|
|
gnome.gnome-keyring
|
|
gnome.seahorse
|
|
]);
|
|
}
|