Robert Helgesson
7ba5496b82
home-manager: update translation templates
2024-04-10 21:26:14 +02:00
Robert Helgesson
fe9daa8aae
carapace: add xgettext workaround
2024-04-10 21:26:14 +02:00
stuebinm
088f23f690
bat: allow adding custom syntaxes
...
Adds an option to add custom syntax files to bat's cache, analogous to
the existing programs.bat.themes option.
2024-04-10 21:26:14 +02:00
NotAShelf
39729ad8cf
xplr: add module
2024-04-10 21:26:13 +02:00
Tristan Daniël Maat
768e981935
swaylock: document the need for host PAM configuration
2024-04-10 21:26:13 +02:00
Sefa Eyeoglu
e12a69178c
exa: replace with eza
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-04-10 21:26:12 +02:00
Karel Kremel
88c3564483
Translate using Weblate (Czech)
...
Currently translated at 100.0% (35 of 35 strings)
Translate using Weblate (Czech)
Currently translated at 5.5% (1 of 18 strings)
Co-authored-by: Karel Kremel <charles@alembiq.net>
Translate-URL: https://hosted.weblate.org/projects/home-manager/cli/cs/
Translate-URL: https://hosted.weblate.org/projects/home-manager/modules/cs/
Translation: Home Manager/Home Manager CLI
Translation: Home Manager/Home Manager Modules
2024-04-10 21:26:11 +02:00
Weblate
5a7dde9ab2
Add translation using Weblate (Czech)
...
Co-authored-by: Weblate <noreply@weblate.org>
2024-04-10 21:26:11 +02:00
Lin Jian
740ea8730d
emacs: add version for default.el package
...
A recent change[1] in Nixpkgs makes version attribute non-optional.
[1]: https://github.com/NixOS/nixpkgs/pull/253448
2024-04-10 21:26:11 +02:00
Robert Helgesson
9447730c9a
just: simplify
2024-04-10 21:26:10 +02:00
Christina Sørensen
9632dbb67d
eza: add module
...
This copies the exa configuration for eza, the official fork of the
program.
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-04-10 21:26:10 +02:00
Weathercold
26ddb8a893
carapace: add module
2024-04-10 21:26:10 +02:00
Basile Clément
520facbef5
accounts.email: fix runbox.com TLS setup ( #4408 )
2024-04-10 21:26:09 +02:00
nicoo
9c390452ee
tmpfiles: use only xdg.configFile
...
This is a small refactor, and minimises the impact of home-manager#4398.
2024-04-10 21:26:09 +02:00
arjan-s
83cae866ee
programs.khal: add settings
option ( #4375 )
2024-04-10 21:26:08 +02:00
Mikilio
296e5d371e
todoman: use ini format for settings
...
Use ini format to generate config
2024-04-10 21:26:08 +02:00
Mikilio
0055eeafb6
todoman: added maintainer
...
Adds Mikilio as maintainer.
2024-04-10 21:26:08 +02:00
Mikilio
e492daeae3
todoman: init module
...
Adds module to configure todoman in a way that is agnostic with other
pimutil projects.
2024-04-10 21:26:08 +02:00
cafkafk
43ec65ad55
Translate using Weblate (Danish)
...
Currently translated at 83.3% (15 of 18 strings)
Translate using Weblate (Danish)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: cafkafk <christina@cafkafk.com>
Translate-URL: https://hosted.weblate.org/projects/home-manager/cli/da/
Translate-URL: https://hosted.weblate.org/projects/home-manager/modules/da/
Translation: Home Manager/Home Manager CLI
Translation: Home Manager/Home Manager Modules
2023-08-27 23:09:54 +02:00
Damien Cassou
455cc8cf1c
offlineimap: cleanup unused bindings
2023-08-27 22:36:42 +02:00
Damien Cassou
0962772e0b
antidote: cleanup unused bindings
2023-08-27 22:36:41 +02:00
Damien Cassou
35cbed7ac7
aerc: cleanup unused bindings
2023-08-27 22:36:40 +02:00
XYenon
90e62f96c7
programs.yazi: add module ( #4373 )
...
add module for yazi https://github.com/sxyazi/yazi a terminal rust file browser akin to ranger or joshuto
2023-08-27 20:47:47 +02:00
networkException
f8c5fd7509
chromium: add support for dictionaries
...
this patch adds support for installing hunspell dictionaries in
chromium.
2023-08-27 10:42:38 +02:00
Anton Mosich
8eb8c212e5
qcal: add module
2023-08-22 18:09:05 +02:00
Robert Helgesson
ea59b79f31
bat: generate cache file in XDG cache home
...
Fixes #4345
2023-08-22 08:34:00 +02:00
polykernel
a0ad98174c
home-cursor: remove IFD when linking icon directories
...
An IFD was introduced in bdb5bcad01
from
reading the top-level directories of the `home.pointerCursor.package`
at instantiation time.
This commit removes the IFD introduced when linking icon directories
by linking only the icon directory matching `home.pointerCursor.name`
in `home.pointerCursor.package`. This should be functionally
equivalent to linking all top-level directories of the supplied icon
package as the module only generates cursor configurations pertaining
to the cursor identified by `home.pointerCursor.name`. Deviations in
behavior caused by additional files linked in $HOME/.icons as of the
status quo should be treated as impurities.
2023-08-22 08:22:24 +02:00
polykernel
bdb5bcad01
home-cursor: improve icon compatibility
...
The current cursor configuration poorly accomodate applications not
following the XDG icon theme spec. As a result, some applications fail
to locate user defined icons and themes.
To address this, symlinks from icon directories in the provided cursor
package was to $HOME/.icons were added added for greater compatibility
with applications using hardcoded icons directories. This approach was
chosen to allow for coexistence of declarative and non-declarative
icon files in the icons directory. In addition, symlinks of icon
directories were mirrored in $XDG_DATA_HOME/.icons for backwards
compatibility. As per the XDG icon theme spec, applications are to
search in $HOME/.icons first for icons and themes so the existing
behavior should not break for XDG compliant applications[1].
[1] https://specifications.freedesktop.org/icon-theme-spec/latest/ar01s03.html
2023-08-19 14:32:28 +02:00
Kilian Mio
6a94c1a597
fix(qt): allow theming for apps started by systemd ( #4349 )
2023-08-17 10:27:17 +02:00
Donovan Glover
9db5b89f40
pqiv: add module
2023-08-16 17:44:54 +02:00
NotAShelf
b84767a145
xplr: add module
2023-08-15 20:26:58 +03:00
Robert Schütz
18791781ea
browserpass: support librewolf
2023-08-15 08:42:51 +02:00
HeartBlin913861820c094e37
da6874e8bb
Translate using Weblate (Romanian)
...
Currently translated at 100.0% (18 of 18 strings)
Translate using Weblate (Romanian)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: HeartBlin913861820c094e37 <heartblin@proton.me>
Translate-URL: https://hosted.weblate.org/projects/home-manager/cli/ro/
Translate-URL: https://hosted.weblate.org/projects/home-manager/modules/ro/
Translation: Home Manager/Home Manager CLI
Translation: Home Manager/Home Manager Modules
2023-08-14 09:40:15 +02:00
Mihai Fufezan
88067b9b14
hyprland: remove xwayland.hidpi ( #4302 )
...
Remove xwayland.hidpi option, since we're dropping HiDPI XWayland
patches support, opting to use the builtin xwayland:force_zero_scaling
option instead. It is described in more detail in
https://wiki.hyprland.org/ Configuring/XWayland.
2023-08-14 09:40:09 +02:00
Robert Helgesson
c3ab5ea047
home-manager: handle profile list in Nix >2.17
...
Nix 2.17 changed the format of the `nix profile list` output. This
commit adds support for parsing the new JSON profile list format.
Fixes #4298
2023-08-13 01:18:17 +02:00
musjj
406d34d919
lf: simplify option validation ( #4334 )
...
Don't try to validate a limited set of hardcoded options, instead just
convert them as-is. Now, users can keep all their options in a single
attribute set, including arbitrary `user_{option}`s which was impossible
to express with a hard-coded submodule. As a plus, there is also less
maintainence burden.
2023-08-12 18:10:49 +02:00
Anton Mosich
255f921049
programs.khal: uncomment locale config ( #4319 )
...
While the locale options were declared, the weren't used in the
generation of the config file, because the locale submodule missed a
default, which failed the tests. I added an empty attribute set as a
default, which fixes the test, and works with the defaults in the
submodule options as expected.
2023-08-12 17:21:13 +02:00
Slabity
6e1eff9aac
kanshi: support adaptive sync ( #4328 )
2023-08-10 15:05:36 +02:00
Jian Lin
a8f8f48320
mu: add package option ( #4325 )
2023-08-09 18:40:43 +02:00
Christian Albrecht
7b8d43fbaf
modules: types.string throws error now ( #4324 )
...
Since the merge of https://github.com/NixOS/nixpkgs/pull/247848
2023-08-08 17:00:24 +02:00
Ivan Malison
903e06d734
taffybar: Avoid restarting too quickly ( #4316 )
2023-08-06 11:00:44 +02:00
Maxim Karasev
0a014a729c
aerc: do not use smtp-starttls ( #4272 )
...
It was deprecated in 0.15.0, +insecure schema is suggested instead.
Thus, we can just copy imap logic, which already uses +insecure.
2023-08-05 10:56:10 +02:00
Lena Fuhrimann
15043a6591
zsh: Add zsh.history.ignoreAllDups
config option ( #4248 )
2023-08-04 12:12:57 +02:00
Matt Moriarity
a4f4508791
jujutsu: fix zsh completion ( #4305 )
2023-08-04 11:19:57 +02:00
박수원
86dd48d70a
Translate using Weblate (Korean)
...
Currently translated at 100.0% (18 of 18 strings)
Translate using Weblate (Korean)
Currently translated at 100.0% (35 of 35 strings)
Co-authored-by: 박수원 <bboxone@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/home-manager/cli/ko/
Translate-URL: https://hosted.weblate.org/projects/home-manager/modules/ko/
Translation: Home Manager/Home Manager CLI
Translation: Home Manager/Home Manager Modules
2023-08-03 07:07:08 +02:00
cvoges12
484a1c9442
network-manager-applet: remove --sm-disable
flag
...
The `--sm-disable` flag is deprecated. It doesn't show in the man
pages, any documentation, and others have seemed to notice as well:
> The `--sm-disable` flag isn't used anymore due to the applet no longer being session-managed.
From: <https://askubuntu.com/a/525273 >
Which cites: <https://mail.gnome.org/archives/networkmanager-list/2011-May/msg00141.html >
PR #4296
2023-08-02 12:09:07 +02:00
Masanori Ogino
a146ab6a61
himalaya: update a link to ticket
2023-08-02 11:41:17 +02:00
Yt
8c731978f0
nushell: deprecation of let-env ( #4292 )
2023-08-01 19:27:30 +02:00
Yureka
4542db6056
man: fix caches generation in cross-compiled system ( #4294 )
...
Co-authored-by: Your Name <you@example.com>
2023-08-01 12:56:37 +02:00
Yureka
89df56fefe
fish: fix session vars build in cross-compiled system ( #4293 )
2023-08-01 10:50:13 +02:00