Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bellackn/nixos-config
NixOS config files
https://github.com/bellackn/nixos-config
Last synced: 23 days ago
JSON representation
NixOS config files
- Host: GitHub
- URL: https://github.com/bellackn/nixos-config
- Owner: bellackn
- Created: 2024-08-22T00:17:54.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-09T00:58:13.000Z (25 days ago)
- Last Synced: 2024-12-09T01:31:47.914Z (25 days ago)
- Language: Nix
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# nixos-config
# Prerequisites
## nixos
We have this setting here for SOPS:
```
sops.age.keyFile = "/home/n2o/.config/sops/age/keys.txt";
```This means, before building the system, you need to put your AGE-SECRET-KEY there.
# Memos to Myself
- If an app just doesn't want to disappear from Launchpad, although you've
installed and uninstalled it several times through Nix and whatnot, this
command will definitely remove it:
```
sqlite3 $(find /private/var/folders \( -name com.apple.dock.launchpad -a -user $USER \) 2> /dev/null)/db/db "DELETE FROM apps WHERE title='APP_NAME_CASE_SENSITIVE';" && killall Dock
```
- Use Homebrew to install GUI apps. This will save you hours of debugging why an
app doesn't want to attach to the Dock and shit like that.- Excellent resource: