Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions modules/home/development.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ in {
autoMemoryEnabled = false;
permissions = {
allow = [
# Nix store (read-only access for inspecting derivations and build outputs)
"Read(/nix/store/*)"
# File exploration
"Bash(cat *)"
"Bash(cut *)"
Expand Down Expand Up @@ -155,10 +157,19 @@ in {
"Bash(gt restack*)"
"Bash(gt sync*)"
# System
"Bash(journalctl:*)"
"Bash(journalctl *)"
"Bash(mkdir *)"
"Bash(systemctl list-jobs:*)"
"Bash(systemctl status:*)"
"Bash(systemctl cat *)"
"Bash(systemctl is-active *)"
"Bash(systemctl is-enabled *)"
"Bash(systemctl is-failed *)"
"Bash(systemctl list-jobs*)"
"Bash(systemctl list-sockets*)"
"Bash(systemctl list-timers*)"
"Bash(systemctl list-unit-files*)"
"Bash(systemctl list-units*)"
"Bash(systemctl show *)"
"Bash(systemctl status *)"
"WebFetch(domain:raw.githubusercontent.com)"
"WebFetch(domain:github.com)"
"WebSearch"
Expand Down
Loading