-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
318ad23
commit c0bbd67
Showing
11 changed files
with
135 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
# Nix | ||
# 🙈 | ||
|
||
## Installation | ||
|
||
1. Fetch key | ||
1. Sign in to iCloud | ||
1. Run init script: | ||
|
||
```bash | ||
curl -s https://raw.githubusercontent.com/addisonbeck/nix/main/bootstrap.sh \ | ||
--output bootstrap.sh && \ | ||
bash bootstrap.sh | ||
``` | ||
My terminal-centric systems configuration for darwin and a bit of nixOS. | ||
There is definitely, for sure some stuff in here you haven't seen before but | ||
it's an unapologetic mess. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{pkgs, ...}: {home.packages = [pkgs.azuredatastudio];} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
pkgs ? import <nixpkgs> {}, | ||
... | ||
}: | ||
let | ||
# configContent = '' | ||
# host = "localhost" | ||
# port = 3306 | ||
# user = "user" | ||
# password = "password" | ||
# database = "dbname" | ||
# | ||
# [[queries]] | ||
# name = "query1" | ||
# sql = "SELECT * FROM table1" | ||
# | ||
# [[queries]] | ||
# name = "query2" | ||
# sql = "SELECT * FROM table2 WHERE column1 = "value"" | ||
# | ||
# [logging] | ||
# level = "INFO" | ||
# file = "lazysql.log" | ||
# | ||
# [settings] | ||
# timeout = 30 | ||
# retries = 3 | ||
# ''; | ||
in { | ||
home.packages = [pkgs.lazysql]; | ||
# home.file.".config/lazysql/config.toml".text = configContent; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
{...}: { | ||
programs.vscode.enable = true; | ||
{ pkgs, ...}: { | ||
programs.vscode = { | ||
enable = true; | ||
}; | ||
} |