Files
nix-fleet/modules/gnome/gnome-apps/gnome-apps.nix
2026-03-03 10:58:47 +01:00

9 lines
177 B
Nix

{ ... }: {
flake.nixosModules.gnome-apps = { pkgs-unstable, ...}:{
environment.systemPackages = with pkgs-unstable; [
gnome-text-editor
ptyxis
];
};
}