mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-24 17:58:30 +02:00
* feat: hardening nixos desktops * refactor: move hardening to the root folder * feat: add nixpaks into nixpkgs via overlays * feat: nixpak - add netease music * docs: hardening * fix: nvidia * fix: disable apparmor & hardening profile to avoid neovim being killed * fix: firefox cursor & fonts
12 lines
230 B
Nix
12 lines
230 B
Nix
{makeDesktopItem}:
|
|
makeDesktopItem {
|
|
name = "firefox";
|
|
desktopName = "firefox";
|
|
exec = "firefox %U";
|
|
terminal = false;
|
|
icon = "firefox";
|
|
type = "Application";
|
|
categories = ["Network"];
|
|
comment = "firefox boxed";
|
|
}
|