Hraban Luyat
f6b7489ddb
feat: defaults write com.apple.menuextra.clock
2023-05-15 13:13:18 -04:00
Domen Kožar
0dbf1c2fb1
Merge pull request #654 from shivaraj-bh/authorized-keys
...
Manage SSH authorized keys for users
2023-05-15 11:59:31 +01:00
sbh69840
3d22883cdb
add tests
2023-05-14 13:20:13 +05:30
Daiderd Jordan
252541bd05
Merge pull request #638 from aerialls/screensaver
...
feat(screensaver): add support of askForPassword and askForPasswordDelay
2023-05-10 23:42:22 +02:00
Daiderd Jordan
25e28fedda
Merge pull request #650 from amarshall/fix-registry-extra-attrs
...
nix: Fix registry extra attrs not being applied
2023-05-10 23:26:18 +02:00
Daiderd Jordan
5061eb4557
Merge pull request #612 from maljub01/patch-1
...
Fix system.patches
2023-05-10 23:22:40 +02:00
sbh69840
f781cb0ac5
give credits
2023-05-10 21:39:27 +05:30
sbh69840
4094dbccde
newline eof for authorized-keys conf
2023-05-10 21:30:35 +05:30
sbh69840
ab2e16159f
authkeys path in sshd_config
2023-05-10 21:16:52 +05:30
sbh69840
ccaa942888
don't check knownSha256 for authorized_keys files
2023-05-10 20:03:21 +05:30
sbh69840
ecb5840f6b
enable copy
2023-05-10 19:35:23 +05:30
sbh69840
64a15676ac
support authorized_keys for users
2023-05-10 19:28:00 +05:30
Domen Kožar
9520a6e483
Merge pull request #653 from serokell/rvem/update-buildkite-module
...
buildkite-agent: update module
2023-05-10 12:55:34 +01:00
Roman Melnikov
da2c0a74ca
buildkite-agent: update module
...
Update module to look it similar to what it currently present in
'nixpkgs'. Mainly, to provide support for running multiple
buildkite-agents.
2023-05-10 16:26:20 +08:00
Andrew Marshall
fa97d79567
nix: Fix registry extra attrs not being applied
...
This was
mkDefault { } // filterAttrs () x
which is interpreted as
(mkDefault { }) // (filterAttrs () x)
but the intention is
mkDefault ({ } // filterAttrs () x)
Resulting in lastModified, rev, etc. not being included. This is
essentially just bringing this clause up-to-date with the one from
NixOS.
2023-05-04 23:53:14 -04:00
Julien Brochet
2303eed571
feat(screensaver): add support of askForPassword and askForPasswordDelay
2023-04-30 14:11:40 +02:00
Domen Kožar
379d42fad6
Merge pull request #600 from konradmalik/uri-builder-fix
...
fix: add '://' to built flake uri
2023-04-29 14:58:27 +02:00
Konrad Malik
597c723f1c
test: added a test to run build with git+file schema
...
Based on a PR by @reckenrode
2023-04-29 14:49:06 +02:00
Konrad Malik
d0e36622c1
fix: in URI use proper groups
2023-04-29 14:49:06 +02:00
Konrad Malik
fad0282b5f
add '://' to built flake uri
2023-04-29 14:49:06 +02:00
Domen Kožar
a1ee4d333b
Merge pull request #624 from lovesegfault/repeated-fonts
...
fix(modules/fonts): ignore repeated fonts
2023-04-20 18:57:12 +02:00
Domen Kožar
b5e76074be
Merge pull request #637 from quentinmit/launchd
...
Add/fix some launchd.plist options
2023-04-20 18:56:12 +02:00
Domen Kožar
f7051807b9
Merge pull request #634 from Enzime/synergy-tls
...
synergy: add options for TLS
2023-04-20 18:55:42 +02:00
Quentin Smith
73ab8e0d70
Add/fix some launchd.plist options
2023-04-19 16:09:53 -04:00
Michael Hoang
90b36a5efe
synergy: add options for TLS
2023-04-18 14:31:42 +09:00
Domen Kožar
025912529d
Merge pull request #625 from Enzime/improve-karabiner-elements
...
Improve Karabiner-Elements installer reliability
2023-04-10 20:19:54 +01:00
Domen Kožar
99d4187d11
Merge pull request #620 from metafates/master
...
fix(wg-quick): builtins function typo
2023-03-31 13:49:23 +01:00
Michael Hoang
e5c994a6af
Improve Karabiner-Elements installer reliability
...
Hopefully fixes #564
2023-03-29 22:27:28 +09:00
Bernardo Meurer
0cf7d41389
fix(modules/fonts): ignore repeated fonts
...
Without this, attempts to build the fonts dir with repeated font
packages in `fonts.fonts` will yield:
```
ln: failed to create symbolic link '/nix/store/6im9rm87nxc82nqbv350hfp2w7ja1z47-fonts/Library/Fonts/IBMPlexSansThai-Thin.otf': File exists
```
2023-03-28 14:41:20 -03:00
Vadim
8699abe98f
fix(wg-quick): builtins function typo
2023-03-21 13:23:16 +03:00
Marwan Aljubeh
ca62d93c6c
Only use --force
for patches applied in reverse
...
Using `--forward` already instructs `--patch` to ignore patches that it thinks are reversed or already applied.
2023-03-07 13:37:18 +00:00
Marwan Aljubeh
42e0e4f3b4
Add --force
to all patch invocations
2023-03-07 13:35:24 +00:00
Marwan Aljubeh
e62b83a934
Fix system.patches
...
Currently, `system.patches` doesn't work because it will attempt to first detect if the patch has already been applied by checking if it can be applied in reverse.
However, when that happens, `patch` detects that the supplied patch is incorrectly reversed and attempts to ask the user if they want to "Ignore -R":
```
Unreversed (or previously applied) patch detected! Ignore -R? [y]
```
Because the output is piped to `/dev/null` the user will basically see nothing and `darwin-rebuild switch` will hang until the user presses "Enter" (possibly to check if the terminal is frozen). At which point, patch will ignore the --reverse and exit successfully, preventing the patch from being applied at all.
This change fixes that bug by using `--force` which tells patch that we know what we're doing and prevents it from prompting the user if they want to ignore `--reverse`.
2023-03-07 12:53:20 +00:00
Domen Kožar
87b9d090ad
Merge pull request #550 from n8henrie/issue_549
...
Add support for submodules in flakes
2023-01-09 20:10:39 +00:00
Domen Kožar
3db1d870b0
Merge pull request #586 from hercules-ci/add-hercules-ci-agent
...
Add `services.hercules-ci-agent`
2023-01-03 13:46:21 +00:00
Robert Hensing
7ec26a9042
services.hercules-ci-agent: Explain default concurrentTasks is core count
2022-12-29 19:01:54 +01:00
Domen Kožar
267040e7a2
Merge pull request #583 from chloelyn/docs/readme
...
Remove inaccurate notice that the uninstaller uninstalls Nix
2022-12-24 14:11:58 +00:00
Robert Hensing
5311f8ded0
hercules-ci-agent: Remove old nix version check
...
This problem is multiple releases in the past now. It has served
its purpose.
2022-12-22 20:18:53 +01:00
Robert Hensing
3cb5cfa5f9
hercules-ci-agent: init
...
Source files originate from the hercules-ci-agent repository and
I will make sure to keep them in sync, bidirectionally.
The module is split into two files to make maintenance of the
common parts with NixOS easier.
2022-12-22 20:18:53 +01:00
Robert Hensing
617604488e
Add meta.maintainers option
2022-12-22 20:18:53 +01:00
Alaina Newmark
023af2a1a2
Remove inaccurate notice for uninstaller in README
2022-12-20 15:36:30 -06:00
Domen Kožar
adb8ac0453
Merge pull request #452 from psm14/mouse-scaling
...
add mouse scaling system setting
2022-12-16 13:07:17 +00:00
Domen Kožar
7e7498acfe
Merge pull request #580 from sliminality/add-24h-time
...
Add option to use 24-hour system time
2022-12-16 13:06:46 +00:00
Domen Kožar
2795e05cca
Merge pull request #468 from lf-/postgres-update
...
services/postgresql: update to the latest upstream nixos module
2022-12-14 12:28:02 +00:00
Domen Kožar
852f451fee
Merge pull request #578 from saccarosium/rebuild-flake-no-out-link
...
Rebuild flake no out link, like #310 but with latest master
2022-12-14 10:56:22 +00:00
Domen Kožar
d308c2b35a
Merge pull request #575 from 4825764518/wg-quick
...
Add wg-quick module
2022-12-14 10:54:36 +00:00
Nathan Henrie
e3c24b5e0c
Test submodule support
2022-12-14 03:45:00 -07:00
Nathan Henrie
5452c8c638
Add support for submodules in flakes
...
Fixes https://github.com/LnL7/nix-darwin/issues/549
2022-12-14 03:44:26 -07:00
Slim Lim
6774344719
Add option to set 24-hour time
...
Normally, the system region setting determines whether the clock uses
12- or 24-hour time. This flag allows users to override this setting and
use 24-hour time even if their region does not.
2022-12-13 15:42:25 -08:00
saccarosium
38463b15ec
darwin-rebuild: fixing logic error in if statement
2022-12-08 10:00:51 +01:00