-
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.
Merge pull request #10 from tsandrini/various_updates
Various updates
- Loading branch information
Showing
93 changed files
with
6,332 additions
and
4,445 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[tool.commitizen] | ||
name = "cz_conventional_commits" | ||
tag_format = "v$version" | ||
version_scheme = "semver" | ||
version = "0.3.0" | ||
update_changelog_on_bump = true | ||
major_version_zero = true |
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,12 @@ | ||
{ | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"mkhl.direnv" | ||
] | ||
} | ||
}, | ||
"image": "ghcr.io/cachix/devenv:latest", | ||
"overrideCommand": false, | ||
"updateContentCommand": "devenv ci" | ||
} |
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,9 @@ | ||
if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then | ||
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs=" | ||
fi | ||
|
||
nix_direnv_watch_file shells/devenv.nix | ||
if ! use flake .#devenv --impure | ||
then | ||
echo "devenv could not be built. The devenv environment was not loaded. Make the necessary changes to devenv.nix and hit enter to try again." >&2 | ||
fi |
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 |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
.vim/plugged/ | ||
result/ | ||
build/ | ||
|
||
result/ | ||
.direnv/ | ||
.devenv/ |
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 @@ | ||
/nix/store/1vc06c5q84lw4dp6lbp9lr4b1zx7yi9r-pre-commit-config.json |
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,16 @@ | ||
# Changelog | ||
|
||
## v0.3.0 (2023-11-11) | ||
|
||
### Feat | ||
|
||
- **modules,lib**: add direnv module,add additional lib helpers | ||
- **devenv**: update devenv with devcontainers and other features | ||
|
||
### Fix | ||
|
||
- **modules.system.users**: fix allowed users setting | ||
|
||
## v0.2.0 (2017-02-13) | ||
|
||
## v0.1.0 (2017-02-13) |
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,8 @@ | ||
[default.extend-identifiers] | ||
nitch = "nitch" | ||
edn = "edn" | ||
fo = "fo" | ||
|
||
|
||
[files] | ||
extend-exclude = ["etc", "secrets"] |
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,38 @@ | ||
(defcfg | ||
input (device-file "/dev/input/by-id/usb-Keychron_Keychron_Q8-event-kbd") | ||
output (uinput-sink "My KMonad output" | ||
"sleep 1 && setxkbmap -layout us,cz -variant ,qwerty -option compose:ralt,grp:alt_shift_toggle") | ||
cmp-seq ralt ;; Set the compose key to `RightAlt' | ||
cmp-seq-delay 5 ;; 5ms delay between each compose-key sequence press | ||
|
||
fallthrough true | ||
allow-cmd false | ||
) | ||
|
||
(defsrc | ||
esc 1 2 3 4 5 6 7 8 9 0 - = bspc ins | ||
tab q w e r t y u i o p [ ] \ del | ||
caps a s d f g h j k l ; ' ret home | ||
lsft z x c v b n m , . / rsft up | ||
lctl lmet lalt spc ralt left down right | ||
) | ||
|
||
(defalias | ||
etc (layer-toggle etc) | ||
) | ||
|
||
(deflayer qwerty | ||
esc 1 2 3 4 5 6 7 8 9 0 - = bspc print | ||
tab q w e r t y u i o p [ ] \ pgup | ||
@etc a s d f g h j k l ; ' ret pgdn | ||
lsft z x c v b n m , . / rsft up | ||
lctl lmet lalt spc ralt left down right | ||
) | ||
|
||
(deflayer etc | ||
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | ||
_ _ _ _ _ XX / 7 8 9 - _ _ _ _ | ||
_ _ _ _ _ XX * 4 5 6 + _ _ _ | ||
_ _ \( \) . XX 0 1 2 3 _ _ _ | ||
_ _ _ _ _ _ _ _ | ||
) |
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,12 @@ | ||
[Unit] | ||
Description=kmonad keyboard config | ||
|
||
[Service] | ||
Restart=always | ||
RestartSec=3 | ||
ExecStart=/usr/bin/kmonad /home/tsandrini/.config/kmonad/config.kbd | ||
Nice=-20 | ||
|
||
[Install] | ||
DefaultInstance=config | ||
WantedBy=default.target |
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
Oops, something went wrong.