inshallah
This commit is contained in:
44
flake.lock
generated
44
flake.lock
generated
@@ -156,12 +156,34 @@
|
|||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"opencode": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1770078005,
|
||||||
|
"narHash": "sha256-4GRRRlEGiqQp4LxZVJrQr3pesPF0JDv1wo6cnPRTIa0=",
|
||||||
|
"owner": "anomalyco",
|
||||||
|
"repo": "opencode",
|
||||||
|
"rev": "96fbc309450c00c02c76bc4fe2e3c4524d31cb90",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "anomalyco",
|
||||||
|
"repo": "opencode",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nix-cachyos-kernel": "nix-cachyos-kernel",
|
"nix-cachyos-kernel": "nix-cachyos-kernel",
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"noctalia": "noctalia",
|
"noctalia": "noctalia",
|
||||||
"vicinae": "vicinae"
|
"opencode": "opencode",
|
||||||
|
"vicinae": "vicinae",
|
||||||
|
"zen-browser": "zen-browser"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"systems": {
|
"systems": {
|
||||||
@@ -199,6 +221,26 @@
|
|||||||
"repo": "vicinae",
|
"repo": "vicinae",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"zen-browser": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1769747637,
|
||||||
|
"narHash": "sha256-fRdj480sqW/a+APO6CmelZsa07BRAdEQLUjBQJuyQbU=",
|
||||||
|
"owner": "youwen5",
|
||||||
|
"repo": "zen-browser-flake",
|
||||||
|
"rev": "09e429679b7cc175e71e2d25800bab66493c1c80",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "youwen5",
|
||||||
|
"repo": "zen-browser-flake",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": "root",
|
"root": "root",
|
||||||
|
|||||||
@@ -8,9 +8,44 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
# NOTE: Most GUI apps are managed via `nix profile` for faster updates
|
|
||||||
# Run `update-apps` to update, `list-apps` to see installed
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Media Viewers
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
loupe # GNOME image viewer
|
||||||
|
evince # PDF/document viewer
|
||||||
|
celluloid # MPV frontend (GTK video player)
|
||||||
|
mpv # Powerful CLI video player
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Music
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
amberol # Simple music player for local files
|
||||||
|
feishin # Navidrome/Jellyfin client
|
||||||
|
picard # MusicBrainz Picard - music tagger
|
||||||
|
beets # Music library manager
|
||||||
|
cava # Audio visualizer
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Communication
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
vesktop # Discord client (Wayland-native, with Vencord)
|
||||||
|
thunderbird # Email client
|
||||||
|
signal-desktop # Encrypted messaging
|
||||||
|
telegram-desktop # Telegram client
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Office & Productivity
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
libreoffice-fresh # Office suite (latest)
|
||||||
|
obsidian # Note-taking with Markdown
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# System Utilities
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
btop # Modern system monitor (terminal)
|
||||||
|
mission-center # GNOME system monitor (GUI, like Windows Task Manager)
|
||||||
|
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
# File Management (GNOME integration)
|
# File Management (GNOME integration)
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
@@ -24,10 +59,30 @@
|
|||||||
unrar
|
unrar
|
||||||
|
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
# Security (GNOME Keyring integration)
|
# Screenshots & Screen Recording
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
swappy # Screenshot annotation tool
|
||||||
|
|
||||||
|
# Screen recording
|
||||||
|
obs-studio # Full-featured streaming/recording suite
|
||||||
|
gpu-screen-recorder # Lightweight GPU-accelerated recorder (AMD/NVIDIA/Intel)
|
||||||
|
kooha # Simple GNOME-style screen recorder
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Security & Passwords
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
bitwarden-desktop # Password manager
|
||||||
seahorse # GNOME Keyring GUI
|
seahorse # GNOME Keyring GUI
|
||||||
|
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
# Utilities
|
||||||
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
gnome-calculator # Calculator
|
||||||
|
gnome-clocks # World clocks, alarms, timers
|
||||||
|
baobab # Disk usage analyzer
|
||||||
|
localsend # AirDrop-like file sharing (cross-platform)
|
||||||
|
meld # Visual diff and merge tool
|
||||||
|
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
# System Tools
|
# System Tools
|
||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
|
|||||||
Reference in New Issue
Block a user