_module.argsAdditional arguments passed to each module in addition to ones
like lib, config,
and pkgs, modulesPath.
This option is also available to all submodules. Submodules do not
inherit args from their parent module, nor do they provide args to
their parent module or sibling submodules. The sole exception to
this is the argument name which is provided by
parent modules to a submodule and contains the attribute name
the submodule is bound to, or a unique generated name if it is
not bound to an attribute.
Some arguments are already passed by default, of which the following cannot be changed with this option:
lib: The nixpkgs library.
config: The results of all options after merging the values from all modules together.
options: The options declared in all modules.
specialArgs: The specialArgs argument passed to evalModules.
All attributes of specialArgs
Whereas option values can generally depend on other option values
thanks to laziness, this does not apply to imports, which
must be computed statically before anything else.
For this reason, callers of the module system can provide specialArgs
which are available during import resolution.
For NixOS, specialArgs includes
modulesPath, which allows you to import
extra modules from the nixpkgs package tree without having to
somehow make the module aware of the location of the
nixpkgs or NixOS directories.
{ modulesPath, ... }: {
imports = [
(modulesPath + "/profiles/minimal.nix")
];
}
For NixOS, the default value for this option includes at least this argument:
pkgs: The nixpkgs package set according to
the nixpkgs.pkgs option.
Type: lazy attribute set of raw value
Declared by:
<home-manager/lib/modules.nix>
|
accounts.email.accountsList of email accounts.
Type: attribute set of submodule
Default:
{
}
Declared by:
accounts.email.accounts.<name>.addressThe email address of this account.
Type: string matching the pattern .*@.*
Example: "jane.doe@example.org"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.aerc.enableWhether to enable aerc.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/aerc.nix>
|
accounts.email.accounts.<name>.aerc.extraAccountsExtra config added to the configuration of this account in
$HOME/.config/aerc/accounts.conf.
See aerc-config(5).
Type: attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { source = "maildir://~/Maildir/example"; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
accounts.email.accounts.<name>.aerc.extraBindsExtra bindings specific to this account, added to
$HOME/.config/aerc/accounts.conf.
See aerc-config(5).
Type: attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { messages = { d = ":move ${folder.trash}<Enter>"; }; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
accounts.email.accounts.<name>.aerc.extraConfigExtra config specific to this account, added to
$HOME/.config/aerc/aerc.conf.
See aerc-config(5).
Type: attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { ui = { sidebar-width = 42; }; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
accounts.email.accounts.<name>.aerc.smtpAuthSets the authentication mechanism if smtp is used as the outgoing method. See aerc-smtp(5).
Type: null or one of "none", "plain", "login"
Default: "plain"
Example: "auth"
Declared by:
<home-manager/modules/programs/aerc.nix>
|
accounts.email.accounts.<name>.aliasesAlternative email addresses of this account.
Type: list of string matching the pattern .*@.*
Default:
[
]
Example:
[
"webmaster@example.org" "admin@example.org"
]
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.alot.contactCompletionContact completion configuration as expected per alot. See alot's wiki for explanation about possible values.
Type: attribute set of string
Default:
{
command = "'\${pkgs.notmuch}/bin/notmuch address --format=json --output=recipients date:6M..'"; regexp = '''\[?{"name": "(?P<name>.*)", "address": "(?P<email>.+)", "name-addr": ".*"}[,\]]?'''; shellcommand_external_filtering = "False"; type = "shellcommand";
}
Example:
{
type = "shellcommand";
command = "abook --mutt-query";
regexp = "'^(?P<email>[^@]+@[^\t]+)\t+(?P<name>[^\t]+)'";
ignorecase = "True";
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
accounts.email.accounts.<name>.alot.extraConfigExtra settings to add to this Alot account configuration.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/alot.nix>
|
accounts.email.accounts.<name>.alot.sendMailCommandCommand to send a mail. If msmtp is enabled for the account, then this is set to msmtpq --read-envelope-from --read-recipients.
Type: null or string
Declared by:
<home-manager/modules/programs/alot.nix>
|
accounts.email.accounts.<name>.astroid.enableWhether to enable Astroid.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/astroid.nix>
|
accounts.email.accounts.<name>.astroid.extraConfigExtra settings to add to this astroid account configuration.
Type: attribute set of anything
Default:
{
}
Example:
{
select_query = "";
}
Declared by:
<home-manager/modules/programs/astroid.nix>
|
accounts.email.accounts.<name>.astroid.sendMailCommandCommand to send a mail. If msmtp is enabled for the account, then this is set to msmtpq --read-envelope-from --read-recipients.
Type: string
Declared by:
<home-manager/modules/programs/astroid.nix>
|
accounts.email.accounts.<name>.flavorSome email providers have peculiar behavior that require special treatment. This option is therefore intended to indicate the nature of the provider.
When this indicates a specific provider then, for example, the IMAP, SMTP, and JMAP server configuration may be set automatically.
Type: one of "plain", "gmail.com", "runbox.com", "fastmail.com", "yandex.com", "outlook.office365.com"
Default: "plain"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.foldersStandard email folders.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.folders.draftsRelative path of the drafts mail folder.
Type: string
Default: "Drafts"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.folders.inboxRelative path of the inbox mail.
Type: string
Default: "Inbox"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.folders.sentRelative path of the sent mail folder.
Type: null or string
Default: "Sent"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.folders.trashRelative path of the deleted mail folder.
Type: string
Default: "Trash"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.getmail.enableWhether to enable the getmail mail retriever for this account.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/getmail.nix>
|
accounts.email.accounts.<name>.getmail.deleteEnable if you want to delete read messages from the server. Most
users should either enable delete or disable
readAll.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/getmail.nix>
|
accounts.email.accounts.<name>.getmail.destinationCommandSpecify a command delivering the incoming mail to your maildir.
Type: null or string
Default: null
Example: "\${pkgs.maildrop}/bin/maildrop"
Declared by:
<home-manager/modules/programs/getmail.nix>
|
accounts.email.accounts.<name>.getmail.mailboxesA non-empty list of mailboxes. To download all mail you can
use the ALL mailbox.
Type: non-empty list of string
Default:
[
]
Example:
[
"INBOX" "INBOX.spam"
]
Declared by:
<home-manager/modules/programs/getmail.nix>
|
accounts.email.accounts.<name>.getmail.readAllEnable if you want to fetch all, even the read messages from the
server. Most users should either enable delete or
disable readAll.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/getmail.nix>
|
accounts.email.accounts.<name>.gpgGPG configuration.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.gpg.encryptByDefaultEncrypt outgoing messages by default.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.gpg.keyThe key to use as listed in gpg --list-keys.
Type: string
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.gpg.signByDefaultSign messages by default.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.himalaya.enableWhether to enable the himalaya mail client for this account .
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/himalaya.nix>
|
accounts.email.accounts.<name>.himalaya.settingsExtra settings to add to this himalaya account configuration.
Type: TOML value
Default:
{
}
Example:
{
default-page-size = 50;
}
Declared by:
<home-manager/modules/programs/himalaya.nix>
|
accounts.email.accounts.<name>.imapThe IMAP configuration to use for this account.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.hostHostname of IMAP server.
Type: string
Example: "imap.example.org"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.portThe port on which the IMAP server listens. If
null then the default port is used.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 993
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.tlsConfiguration for secure connections.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.tls.enableWhether to enable TLS/SSL.
Type: boolean
Default: true
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.tls.certificatesFilePath to file containing certificate authorities that should
be used to validate the connection authenticity. If
null then the system default is used.
Note, if set then the system default may still be accepted.
Type: null or path
Default: "config.accounts.email.certificatesFile"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imap.tls.useStartTlsWhether to use STARTTLS.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.imapnotify.enableWhether to enable imapnotify.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
accounts.email.accounts.<name>.imapnotify.boxesIMAP folders to watch.
Type: list of string
Default:
[
]
Example:
[
"Inbox" "[Gmail]/MyLabel"
]
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
accounts.email.accounts.<name>.imapnotify.extraConfigAdditional configuration to add for this account.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
wait = 10;
}
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
accounts.email.accounts.<name>.imapnotify.onNotifyShell commands to run on any event.
Type: string or attribute set of string
Default: ""
Example: "\${pkgs.isync}/bin/mbsync test-%s"
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
accounts.email.accounts.<name>.imapnotify.onNotifyPostShell commands to run after onNotify event.
Type: string or attribute set of string
Default: ""
Example:
{
mail = "\${pkgs.notmuch}/bin/notmuch new && \${pkgs.libnotify}/bin/notify-send 'New mail arrived'";
}
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
accounts.email.accounts.<name>.jmapThe JMAP configuration to use for this account.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.jmap.hostHostname of JMAP server.
If both this option and accounts.email.accounts.<name>.jmap.sessionUrl are specified,
host is preferred by applications when establishing a
session.
Type: null or string
Default: null
Example: "jmap.example.org"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.jmap.sessionUrlURL for the JMAP Session resource.
If both this option and accounts.email.accounts.<name>.jmap.host are specified,
host is preferred by applications when establishing a
session.
Type: null or string
Default: null
Example: "https://jmap.example.org:443/.well-known/jmap"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.lieer.enableWhether to enable lieer Gmail synchronization for notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.notmuchSetupWarningWarn if Notmuch is not also enabled for this account.
This can safely be disabled if notmuch init has been used to configure this account outside of Home Manager.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settingsSettings which are applied to .gmailieer.json
for the account.
See the lieer manual for documentation of settings not explicitly covered by this module.
Type: JSON value
Default:
{
}
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.drop_non_existing_labelAllow missing labels on the Gmail side to be dropped.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.file_extensionExtension to include in local file names, which can be useful for indexing with third-party programs.
Type: string
Default: ""
Example: "mbox"
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.ignore_empty_historyWork around a Gmail API quirk where an empty change history is sometimes returned.
See this GitHub issue for more details.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.ignore_remote_labelsSet Gmail labels to ignore when syncing from remote labels to local tags (before translations).
Type: list of string
Default:
[
"CATEGORY_FORUMS" "CATEGORY_PROMOTIONS" "CATEGORY_UPDATES" "CATEGORY_SOCIAL" "CATEGORY_PERSONAL"
]
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.ignore_tagsSet labels to ignore when syncing from local tags to remote labels (after translations).
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.local_trash_tagLocal tag to which the remote Gmail 'TRASH' label is translated.
Type: string
Default: "trash"
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.remove_local_messagesRemove local messages that have been deleted on the remote.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.replace_slash_with_dotReplace '/' with '.' in Gmail labels.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.settings.timeoutHTTP timeout in seconds. 0 means forever or system timeout.
Type: unsigned integer, meaning >=0
Default: 600
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.sync.enableWhether to enable lieer synchronization service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.lieer.sync.frequencyHow often to synchronize the account.
This value is passed to the systemd timer configuration as the onCalendar option. See systemd.time(7) for more information about the format.
Type: string
Default: "*:0/5"
Declared by:
<home-manager/modules/programs/lieer.nix>
|
accounts.email.accounts.<name>.maildirMaildir configuration for this account.
Type: null or submodule
Default:
{
path = "\${name}";
}
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.maildir.pathPath to maildir directory where mail for this account is stored. This is relative to the base maildir path.
Type: string
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.mbsync.enableWhether to enable synchronization using mbsync.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.createAutomatically create missing mailboxes within the given mail store.
Type: one of "none", "maildir", "imap", "both"
Default: "none"
Example: "maildir"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.expungePermanently remove messages marked for deletion from the given mail store.
Type: one of "none", "maildir", "imap", "both"
Default: "none"
Example: "both"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.extraConfig.accountAccount section extra configuration.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
PipelineDepth = 10;
Timeout = 60;
};
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.extraConfig.channelPer channel extra configuration.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
MaxMessages = 10000;
MaxSize = "1m";
};
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.extraConfig.localLocal store extra configuration.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.extraConfig.remoteRemote store extra configuration.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.flattenIf set, flattens the hierarchy within the maildir by
substituting the canonical hierarchy delimiter
/ with this value.
Type: null or string
Default: null
Example: "."
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groupsSome email providers (Gmail) have a different directory hierarchy for
synchronized email messages. Namely, when using mbsync without specifying
a set of channels into a group, all synchronized directories end up beneath
the [Gmail]/ directory.
This option allows you to specify a group, and subsequently channels that will allow you to sync your mail into an arbitrary hierarchy.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channelsList of channels that should be grouped together into this group. When performing a synchronization, the groups are synchronized, rather than the individual channels.
Using these channels and then grouping them together allows for you to define the maildir hierarchy as you see fit.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channels.<name>.extraConfigExtra configuration lines to add to THIS channel's configuration.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
Create = "both";
CopyArrivalDate = "yes";
MaxMessages = 10000;
MaxSize = "1m";
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channels.<name>.farPatternIMAP4 patterns for which mailboxes on the remote mail server to sync.
If Patterns are specified, farPattern
is interpreted as a prefix which is not matched against the patterns,
and is not affected by mailbox list overrides.
If this is left as the default, then mbsync will default to the pattern
INBOX.
Type: string
Default: ""
Example: "[Gmail]/Sent Mail"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channels.<name>.nameThe unique name for THIS channel in THIS group. The group will refer to this channel by this name.
In addition, you can manually sync just this channel by specifying this name to mbsync on the command line.
Type: string (read only)
Default: "‹name›"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channels.<name>.nearPatternName for where mail coming from the remote (far) mail server will end up locally. The mailbox specified by the far pattern will be placed in this directory.
If this is left as the default, then mbsync will default to the pattern
INBOX.
Type: string
Default: ""
Example: "Sent"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.channels.<name>.patternsInstead of synchronizing just the mailboxes that
match the farPattern, use it as a prefix which is
not matched against the patterns, and is not affected by mailbox list
overrides.
Type: list of string
Default:
[
]
Example:
[
"INBOX"
]
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.groups.<name>.nameThe name of this group for this account. These names are different than some others, because they will hide channel names that are the same.
Type: string (read only)
Default: "‹name›"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.patternsPattern of mailboxes to synchronize.
Type: list of string
Default:
[
"*"
]
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.removePropagate mailbox deletions to the given mail store.
Type: one of "none", "maildir", "imap", "both"
Default: "none"
Example: "imap"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.mbsync.subFoldersThe on-disk folder naming style. This option has no
effect when flatten is used.
Type: one of "Verbatim", "Maildir++", "Legacy"
Default: "Verbatim"
Example: "Maildir++"
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
accounts.email.accounts.<name>.msmtp.enableWhether to enable msmtp.
If enabled then it is possible to use the
--account command line
option to send a message for a given account using the
msmtp or msmtpq tool.
For example, msmtp --account=private would
send using the account defined in
accounts.email.accounts.private. If the
--account option is not
given then the primary account will be used.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
accounts.email.accounts.<name>.msmtp.extraConfigExtra configuration options to add to ~/.msmtprc.
See https://marlam.de/msmtp/msmtprc.txt for
examples.
Type: attribute set of string
Default:
{
}
Example:
{
auth = "login";
}
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
accounts.email.accounts.<name>.msmtp.tls.fingerprintFingerprint of a trusted TLS certificate. The fingerprint can be obtained by executing msmtp --serverinfo --tls --tls-certcheck=off.
Type: null or string matching the pattern ([[:alnum:]]{2}:)+[[:alnum:]]{2}
Default: null
Example: "my:SH:a2:56:ha:sh"
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
accounts.email.accounts.<name>.mu.enableWhether to enable mu indexing.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mu.nix>
|
accounts.email.accounts.<name>.mujmap.enableWhether to enable mujmap JMAP synchronization for notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.notmuchSetupWarningWarn if Notmuch is not also enabled for this account.
This can safely be disabled if mujmap.toml is managed
outside of Home Manager.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settingsSettings which are applied to mujmap.toml
for the account.
See the mujmap project for documentation of settings not explicitly covered by this module.
Type: TOML value
Default:
{
}
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.auto_create_new_mailboxesWhether to create new mailboxes automatically on the server from notmuch tags.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.cache_dirThe cache directory in which to store mail files while they are being downloaded. The default is operating-system specific.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.fqdnFully qualified domain name of the JMAP service.
mujmap looks up the JMAP SRV record for this host to determine the JMAP session
URL. Mutually exclusive with
accounts.email.accounts.<name>.mujmap.settings.session_url.
If null, defaults to
accounts.email.accounts.<name>.jmap.host.
Type: null or string
Default: null
Example: "example.com"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.password_commandShell command which will print a password to stdout for basic HTTP authentication.
If null, defaults to
accounts.email.accounts.<name>.passwordCommand.
Type: null or string or list of string
Default: null
Example: "pass alice@example.com"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.session_urlSesion URL to connect to.
Mutually exclusive with
accounts.email.accounts.<name>.mujmap.settings.fqdn.
If null, defaults to
accounts.email.accounts.<name>.jmap.sessionUrl.
Type: null or string
Default: null
Example: "https://jmap.example.com/.well-known/jmap"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tagsTag configuration.
Beware that there are quirks that require manual consideration if changing the values of these files; please see https://github.com/elizagamedev/mujmap/blob/main/mujmap.toml.example for more details.
Type: TOML value
Default:
{
}
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.deletedTag for notmuch to use for messages stored in the mailbox labeled with the
Trash name attribute.
If set to an empty string, this mailbox and its child mailboxes are not synchronized with a tag.
Type: string
Default: "deleted"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.directory_separatorDirectory separator for mapping notmuch tags to maildirs.
Type: string
Default: "/"
Example: "."
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.importantTag for notmuch to use for messages stored in the mailbox labeled with the
Important name attribute and/or with the $Important
keyword.
If set to an empty string, this mailbox, its child mailboxes, and these keywords are not synchronized with a tag.
Type: string
Default: "important"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.inboxTag for notmuch to use for messages stored in the mailbox labeled with the
Inbox name attribute.
If set to an empty string, this mailbox and its child mailboxes are not synchronized with a tag.
Type: string
Default: "inbox"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.lowercaseIf true, translate all mailboxes to lowercase names when mapping to notmuch tags.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.phishingTag for notmuch to use for the IANA $Phishing keyword.
If set to an empty string, this keyword is not synchronized with a tag.
Type: string
Default: "phishing"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.sentTag for notmuch to use for messages stored in the mailbox labeled with the
Sent name attribute.
If set to an empty string, this mailbox and its child mailboxes are not synchronized with a tag.
Type: string
Default: "sent"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.tags.spamTag for notmuch to use for messages stored in the mailbox labeled with the
Junk name attribute and/or with the $Junk keyword,
except for messages with the $NotJunk keyword.
If set to an empty string, this mailbox, its child mailboxes, and these keywords are not synchronized with a tag.
Type: string
Default: "spam"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.mujmap.settings.usernameUsername for basic HTTP authentication.
If null, defaults to
accounts.email.accounts.<name>.userName.
Type: null or string
Default: null
Example: "alice@example.com"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
accounts.email.accounts.<name>.nameUnique identifier of the account. This is set to the attribute name of the account configuration.
Type: string (read only)
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.neomutt.enableWhether to enable NeoMutt.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
accounts.email.accounts.<name>.neomutt.extraConfigExtra lines to add to the folder hook for this account.
Type: strings concatenated with "\n"
Default: ""
Example: "color status cyan default"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
accounts.email.accounts.<name>.neomutt.extraMailboxesList of extra mailboxes
Type: list of string or submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
accounts.email.accounts.<name>.neomutt.mailboxNameUse a different name as mailbox name
Type: null or string
Default: null
Example: "==== <mailbox-name> ==="
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
accounts.email.accounts.<name>.neomutt.sendMailCommandCommand to send a mail. If not set, neomutt will be in charge of sending mails.
Type: null or string
Default:
if config.msmtp.enable then "msmtpq --read-envelope-from --read-recipients" else null
Example: "msmtpq --read-envelope-from --read-recipients"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
accounts.email.accounts.<name>.notmuch.enableWhether to enable notmuch indexing.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
accounts.email.accounts.<name>.offlineimap.enableWhether to enable OfflineIMAP.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
accounts.email.accounts.<name>.offlineimap.extraConfig.accountExtra configuration options to add to the account section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
autorefresh = 20;
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
accounts.email.accounts.<name>.offlineimap.extraConfig.localExtra configuration options to add to the local account section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
sync_deletes = true;
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
accounts.email.accounts.<name>.offlineimap.extraConfig.remoteExtra configuration options to add to the remote account section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
expunge = false; maxconnections = 2;
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
accounts.email.accounts.<name>.offlineimap.postSyncHookCommandCommand to run after fetching new mails.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
accounts.email.accounts.<name>.passwordCommandA command, which when run writes the account password on standard output.
Type: null or string or list of string
Default: null
Example: "secret-tool lookup email me@example.org"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.primaryWhether this is the primary account. Only one account may be set as primary.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.realNameName displayed when sending mails.
Type: string
Example: "Jane Doe"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.signatureSignature configuration.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.signature.commandA command that generates a signature.
Type: null or path
Default: null
Example:
pkgs.writeScript "signature" "echo This is my signature"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.signature.showSignatureMethod to communicate the signature.
Type: one of "append", "attach", "none"
Default: "none"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.signature.textSignature content.
Type: string
Default: ""
Example:
'' -- Luke Skywalker May the force be with you. ''
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtpThe SMTP configuration to use for this account.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.hostHostname of SMTP server.
Type: string
Example: "smtp.example.org"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.portThe port on which the SMTP server listens. If
null then the default port is used.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 465
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.tlsConfiguration for secure connections.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.tls.enableWhether to enable TLS/SSL.
Type: boolean
Default: true
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.tls.certificatesFilePath to file containing certificate authorities that should
be used to validate the connection authenticity. If
null then the system default is used.
Note, if set then the system default may still be accepted.
Type: null or path
Default: "config.accounts.email.certificatesFile"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.smtp.tls.useStartTlsWhether to use STARTTLS.
Type: boolean
Default: false
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.accounts.<name>.userNameThe server username of this account. This will be used as the SMTP, IMAP, and JMAP user name.
Type: null or string
Default: null
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.certificatesFilePath to default file containing certificate authorities that should be used to validate the connection authenticity. This path may be overridden on a per-account basis.
Type: null or path
Default: "/etc/ssl/certs/ca-certificates.crt"
Declared by:
<home-manager/modules/accounts/email.nix>
|
accounts.email.maildirBasePathThe base directory for account maildir directories. May be a relative path, in which case it is relative the home directory.
Type: string
Default: "$HOME/Maildir"
Declared by:
<home-manager/modules/accounts/email.nix>
|
dconf.settingsSettings to write to the dconf configuration system.
Type: attribute set of attribute set of GVariant value
Default:
{
}
Example:
{
"org/gnome/calculator" = {
button-mode = "programming";
show-thousands = true;
base = 10;
word-size = 64;
window-position = lib.hm.gvariant.mkTuple [100 100];
};
}
Declared by:
<home-manager/modules/misc/dconf.nix>
|
editorconfig.enableWhether to enable EditorConfig home configuration file.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/editorconfig.nix>
|
editorconfig.settingsConfiguration written to $HOME/.editorconfig.
root = true is automatically added to the file,
it must not be added here.
See https://editorconfig.org for documentation.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
"*" = {
charset = "utf-8";
end_of_line = "lf";
trim_trailing_whitespace = true;
insert_final_newline = true;
max_line_width = 78;
indent_style = "space";
indent_size = 4;
};
};
Declared by:
<home-manager/modules/misc/editorconfig.nix>
|
fonts.fontconfig.enableWhether to enable fontconfig configuration. This will, for
example, allow fontconfig to discover fonts and
configurations installed through
home.packages and
nix-env.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/fontconfig.nix>
|
gtk.enableWhether to enable GTK 2/3 configuration.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.cursorThemeThe cursor theme to use.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.cursorTheme.packagePackage providing the cursor theme. This package will be installed
to your profile. If null then the theme
is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.vanilla-dmz
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.cursorTheme.nameThe name of the cursor theme within the package.
Type: string
Example: "Vanilla-DMZ"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.cursorTheme.sizeThe size of the cursor.
Type: null or signed integer
Default: null
Example: 16
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.fontThe font to use in GTK+ 2/3 applications.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.font.packagePackage providing the font. This package will be installed
to your profile. If null then the font
is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.dejavu_fonts
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.font.nameThe family name of the font within the package.
Type: string
Example: "DejaVu Sans"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.font.sizeThe size of the font.
Type: null or signed integer
Default: null
Example: "8"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk2.configLocationThe location to put the GTK configuration file.
Type: path
Default: "${config.home.homeDirectory}/.gtkrc-2.0"
Example: "${config.xdg.configHome}/gtk-2.0/gtkrc"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk2.extraConfigExtra configuration lines to add verbatim to
~/.gtkrc-2.0.
Type: strings concatenated with "\n"
Default: ""
Example: "gtk-can-change-accels = 1"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk3.bookmarksBookmarks in the sidebar of the GTK file browser
Type: list of string
Default:
[
]
Example:
[
"file:///home/jane/Documents"
]
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk3.extraConfigExtra configuration options to add to
$XDG_CONFIG_HOME/gtk-3.0/settings.ini.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
gtk-cursor-blink = false; gtk-recent-files-limit = 20;
}
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk3.extraCssExtra configuration lines to add verbatim to
$XDG_CONFIG_HOME/gtk-3.0/gtk.css.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.gtk4.extraConfigExtra configuration options to add to
$XDG_CONFIG_HOME/gtk-4.0/settings.ini.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
gtk-cursor-blink = false; gtk-recent-files-limit = 20;
}
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.iconThemeThe icon theme to use.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.iconTheme.packagePackage providing the icon theme. This package will be installed
to your profile. If null then the theme
is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.gnome.adwaita-icon-theme
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.iconTheme.nameThe name of the icon theme within the package.
Type: string
Example: "Adwaita"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.themeThe GTK+2/3 theme to use.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.theme.packagePackage providing the theme. This package will be installed
to your profile. If null then the theme
is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.gnome.gnome-themes-extra
Declared by:
<home-manager/modules/misc/gtk.nix>
|
gtk.theme.nameThe name of the theme within the package.
Type: string
Example: "Adwaita"
Declared by:
<home-manager/modules/misc/gtk.nix>
|
home.enableDebugInfoSome Nix-packages provide debug symbols for
gdb in the debug-output.
This option ensures that those are automatically fetched from
the binary cache if available and gdb is
configured to find those symbols.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/debug.nix>
|
home.enableNixpkgsReleaseCheckDetermines whether to check for release version mismatch between Home Manager and Nixpkgs. Using mismatched versions is likely to cause errors and unexpected behavior. It is therefore highly recommended to use a release of Home Manager than corresponds with your chosen release of Nixpkgs.
When this option is enabled and a mismatch is detected then a warning will be printed when the user configuration is being built.
Type: boolean
Default: false
Declared by:
<home-manager/modules/home-environment.nix>
|
home.packagesThe set of packages to appear in the user environment.
Type: list of package
Default:
[
]
Declared by:
<home-manager/modules/home-environment.nix>
|
home.activationThe activation scripts blocks to run when activating a Home Manager generation. Any entry here should be idempotent, meaning running twice or more times produces the same result as running it once.
If the script block produces any observable side effect, such
as writing or deleting files, then it
must be placed after the special
writeBoundary script block. Prior to the
write boundary one can place script blocks that verifies, but
does not modify, the state of the system and exits if an
unexpected state is found. For example, the
checkLinkTargets script block checks for
collisions between non-managed files and files defined in
home.file.
A script block should respect the DRY_RUN
variable, if it is set then the actions taken by the script
should be logged to standard out and not actually performed.
The variable DRY_RUN_CMD is set to
echo if dry run is enabled.
A script block should also respect the
VERBOSE variable, and if set print
information on standard out that may be useful for debugging
any issue that may arise. The variable
VERBOSE_ARG is set to
--verbose if verbose output is enabled.
Type: DAG of string
Default:
{
}
Example:
{
myActivationAction = lib.hm.dag.entryAfter ["writeBoundary"] ''
$DRY_RUN_CMD ln -s $VERBOSE_ARG \
${builtins.toPath ./link-me-directly} $HOME
'';
}
Declared by:
<home-manager/modules/home-environment.nix>
|
home.extraOutputsToInstallList of additional package outputs of the packages
home.packages that should be installed into
the user environment.
Type: list of string
Default:
[
]
Example:
[
"doc" "info" "devdoc"
]
Declared by:
<home-manager/modules/home-environment.nix>
|
home.fileAttribute set of files to link into the user home.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.executableSet the execute bit. If null, defaults to the mode
of the source file or to false
for files created through the text option.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.onChangeShell commands to run when file has changed between generations. The script will be run after the new files have been linked into place.
Note, this code is always run when recursive is
enabled.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.recursiveIf the file source is a directory, then this option determines whether the directory should be recursively linked to the target location. This option has no effect if the source is a file.
If false (the default) then the target
will be a symbolic link to the source directory. If
true then the target will be a
directory structure matching the source's but whose leafs
are symbolic links to the files of the source directory.
Type: boolean
Default: false
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.sourcePath of the source file or directory. If
home.file.<name>.text
is non-null then this option will automatically point to a file
containing that text.
Type: path
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.targetPath to target file relative to HOME.
Type: string
Default: <name>
Declared by:
<home-manager/modules/files.nix>
|
home.file.<name>.textText of the file. If this option is null then
home.file.<name>.source
must be set.
Type: null or strings concatenated with "\n"
Default: null
Declared by:
<home-manager/modules/files.nix>
|
home.homeDirectoryThe user's home directory. Must be an absolute path.
Type: path
Default:
"$HOME" for state version < 20.09, undefined for state version ≥ 20.09
Example: "/home/jane.doe"
Declared by:
<home-manager/modules/home-environment.nix>
|
home.keyboardKeyboard configuration. Set to null to
disable Home Manager keyboard management.
Type: null or submodule
Default:
"{ }" for state version < 21.11,
"null" for state version ≥ 21.11
Declared by:
<home-manager/modules/home-environment.nix>
|
home.keyboard.layoutKeyboard layout. If null, then the system
configuration will be used.
This defaults to null for state
version ≥ 19.09 and "us" otherwise.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.keyboard.modelKeyboard model.
Type: null or string
Default: null
Example: "presario"
Declared by:
<home-manager/modules/home-environment.nix>
|
home.keyboard.optionsX keyboard options; layout switching goes here.
Type: list of string
Default:
[
]
Example:
[
"grp:caps_toggle" "grp_led:scroll"
]
Declared by:
<home-manager/modules/home-environment.nix>
|
home.keyboard.variantX keyboard variant. If null, then the
system configuration will be used.
This defaults to null for state
version ≥ 19.09 and "" otherwise.
Type: null or string
Default: null
Example: "colemak"
Declared by:
<home-manager/modules/home-environment.nix>
|
home.languageLanguage configuration.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.addressThe language to use for addresses.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.baseThe language to use unless overridden by a more specific option.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.collateThe language to use for collation (alphabetical ordering).
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.ctypeCharacter classification category.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.measurementThe language to use for measurement values.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.messagesThe language to use for messages, application UI languages, etc.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.monetaryThe language to use for formatting currencies and money amounts.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.nameThe language to use for personal names.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.numericThe language to use for numerical values.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.paperThe language to use for paper sizes.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.telephoneThe language to use for telephone numbers.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.language.timeThe language to use for formatting times.
Type: null or string
Default: null
Declared by:
<home-manager/modules/home-environment.nix>
|
home.pointerCursorCursor configuration. Set to null to disable.
Top-level options declared under this submodule are backend indepedent
options. Options declared under namespaces such as x11
are backend specific options. By default, only backend independent cursor
configurations are generated. If you need configurations for specific
backends, you can toggle them via the enable option. For example,
home.pointerCursor.x11.enable
will enable x11 cursor configurations.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.packagePackage providing the cursor theme.
Type: package
Example: pkgs.vanilla-dmz
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.gtk.enableWhether to enable gtk config generation for home.pointerCursor
.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.nameThe cursor name within the package.
Type: string
Example: "Vanilla-DMZ"
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.sizeThe cursor size.
Type: signed integer
Default: 32
Example: 64
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.x11.enableWhether to enable x11 config generation for home.pointerCursor
.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.pointerCursor.x11.defaultCursorThe default cursor file to use within the package.
Type: string
Default: "left_ptr"
Example: "X_cursor"
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
home.profileDirectoryThe profile directory where Home Manager generations are installed.
Type: path (read only)
Default:
"${home.homeDirectory}/.nix-profile" or
"/etc/profiles/per-user/${home.username}"
Declared by:
<home-manager/modules/home-environment.nix>
|
home.sessionPathExtra directories to add to PATH.
These directories are added to the PATH variable in a
double-quoted context, so expressions like $HOME are
expanded by the shell. However, since expressions like ~ or
* are escaped, they will end up in the PATH
verbatim.
Type: list of string
Default:
[
]
Example:
[
"$HOME/.local/bin" "\${xdg.configHome}/emacs/bin" ".git/safe/../../bin"
]
Declared by:
<home-manager/modules/home-environment.nix>
|
home.sessionVariablesEnvironment variables to always set at login.
The values may refer to other environment variables using
POSIX.2 style variable references. For example, a variable
parameter may be referenced as
$parameter or ${parameter}. A
default value foo may be given as per
${parameter:-foo} and, similarly, an alternate
value bar can be given as per
${parameter:+bar}.
Note, these variables may be set in any order so no session variable may have a runtime dependency on another session variable. In particular code like
home.sessionVariables = {
FOO = "Hello";
BAR = "$FOO World!";
};
may not work as expected. If you need to reference another session variable, then do so inside Nix instead. The above example then becomes
home.sessionVariables = {
FOO = "Hello";
BAR = "${config.home.sessionVariables.FOO} World!";
};
Type: attribute set
Default:
{
}
Example:
{
EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4";
}
Declared by:
<home-manager/modules/home-environment.nix>
|
home.shellAliasesAn attribute set that maps aliases (the top level attribute names in this option) to command strings or directly to build outputs.
This option should only be used to manage simple aliases that are
compatible across all shells. If you need to use a shell specific
feature then make sure to use a shell specific option, for example
programs.bash.shellAliases for Bash.
Type: attribute set of string
Default:
{
}
Example:
{
g = "git";
"..." = "cd ../..";
}
Declared by:
<home-manager/modules/home-environment.nix>
|
home.stateVersionIt is occasionally necessary for Home Manager to change configuration defaults in a way that is incompatible with stateful data. This could, for example, include switching the default data format or location of a file.
The state version indicates which default settings are in effect and will therefore help avoid breaking program configurations. Switching to a higher state version typically requires performing some manual steps, such as data conversion or moving files.
Type: one of "18.09", "19.03", "19.09", "20.03", "20.09", "21.03", "21.05", "21.11", "22.05", "22.11"
Declared by:
<home-manager/modules/misc/version.nix>
|
home.usernameThe user's username.
Type: string
Default:
"$USER" for state version < 20.09, undefined for state version ≥ 20.09
Example: "jane.doe"
Declared by:
<home-manager/modules/home-environment.nix>
|
i18n.inputMethod.enabledSelect the enabled input method. Input methods is a software to input symbols that are not available on standard input devices.
Input methods are specially used to input Chinese, Japanese and Korean characters.
Currently the following input methods are available in Home Manager:
fcitx
A customizable lightweight input method
extra input engines can be added using
i18n.inputMethod.fcitx.engines.
fcitx5
The next generation of fcitx,
addons (including engines, dictionaries, skins) can be added using
i18n.inputMethod.fcitx5.addons.
nabiA Korean input method based on XIM. Nabi doesn't support Qt 5.
uimThe universal input method, is a library with a XIM bridge. uim mainly support Chinese, Japanese and Korean.
himeAn extremely easy-to-use input method framework.
kimeA Korean IME.
Type: null or one of "fcitx", "fcitx5", "nabi", "uim", "hime", "kime"
Default: null
Example: "fcitx"
Declared by:
<home-manager/modules/i18n/input-method/default.nix>
|
i18n.inputMethod.fcitx.enginesEnabled Fcitx engines. Available engines are: anthy, chewing, cloudpinyin, hangul, libpinyin, m17n, mozc, rime, skk, table-extra, table-other, unikey.
Type: list of package
Default:
[
]
Example: with pkgs.fcitx-engines; [ mozc hangul ]
Declared by:
<home-manager/modules/i18n/input-method/fcitx.nix>
|
i18n.inputMethod.fcitx5.addonsEnabled Fcitx5 addons.
Type: list of package
Default:
[
]
Example: with pkgs; [ fcitx5-rime ]
Declared by:
<home-manager/modules/i18n/input-method/fcitx5.nix>
|
i18n.inputMethod.kime.configkime configuration. Refer to https://github.com/Riey/kime/blob/develop/docs/CONFIGURATION.md for details on supported values.
Type: YAML value
Default:
{
}
Example:
{
daemon = {
modules = ["Xim" "Indicator"];
};
indicator = {
icon_color = "White";
};
engine = {
hangul = {
layout = "dubeolsik";
};
};
}
Declared by:
<home-manager/modules/i18n/input-method/kime.nix>
|
i18n.inputMethod.uim.toolbarSelected UIM toolbar.
Type: one of "gtk", "gtk3", "gtk-systray", "gtk3-systray", "qt4"
Default: "gtk"
Example: "gtk-systray"
Declared by:
<home-manager/modules/i18n/input-method/uim.nix>
|
launchd.enableWhether to enable Home Manager to define per-user daemons by making use of launchd's LaunchAgents.
Type: boolean
Default: pkgs.stdenv.hostPlatform.isDarwin
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agentsDefine LaunchAgents.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.enableWhether to enable ‹name›.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.configDefine a launchd job. See launchd.plist(5) for details.
Type: submodule
Default:
{
}
Example:
{
ProgramArguments = [ "/usr/bin/say" "Good afternoon" ];
StartCalendarInterval = {
Hour = 12;
Minute = 0;
};
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.AbandonProcessGroupWhen a job dies, launchd kills any remaining processes with the same process group ID as the job. Set-ting Setting ting this key to true disables that behavior.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.DebugThis optional key specifies that launchd should adjust its log mask temporarily to LOG_DEBUG while dealing with this job.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.DisabledThis optional key is used as a hint to launchctl(1) that it should not submit this job to launchd when
loading a job or jobs. The value of this key does NOT reflect the current state of the job on the run-ning running
ning system. If you wish to know whether a job is loaded in launchd, reading this key from a configura-tion configuration
tion file yourself is not a sufficient test. You should query launchd for the presence of the job using
the launchctl(1) list subcommand or use the ServiceManagement framework's
SMJobCopyDictionary() method.
Note that as of Mac OS X v10.6, this key's value in a configuration file conveys a default value, which
is changed with the [-w] option of the launchctl(1) load and unload subcommands. These subcommands no
longer modify the configuration file, so the value displayed in the configuration file is not necessar-ily necessarily
ily the value that launchctl(1) will apply. See launchctl(1) for more information.
Please also be mindful that you should only use this key if the provided on-demand and KeepAlive crite-ria criteria
ria are insufficient to describe the conditions under which your job needs to run. The cost to have a
job loaded in launchd is negligible, so there is no harm in loading a job which only runs once or very
rarely.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.EnableGlobbingThis flag causes launchd to use the glob(3) mechanism to update the program arguments before invoca-tion. invocation.
tion.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.EnableTransactionsThis flag instructs launchd that the job promises to use vproc_transaction_begin(3) and
vproc_transaction_end(3) to track outstanding transactions that need to be reconciled before the
process can safely terminate. If no outstanding transactions are in progress, then launchd is free to
send the SIGKILL signal.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.EnvironmentVariablesThis optional key is used to specify additional environment variables to be set before running the job.
Type: null or attribute set of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.ExitTimeOutThe amount of time launchd waits before sending a SIGKILL signal. The default value is 20 seconds. The value zero is interpreted as infinity.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.GroupNameThis optional key specifies the group to run the job as. This key is only applicable when launchd is running as root. If UserName is set and GroupName is not, the the group will be set to the default group of the user.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimitsResource limits to be imposed on the job. These adjust variables set with setrlimit(2). The following
keys apply:
Type: null or submodule
Default: null
Example:
{
NumberOfFiles = 4096;
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.CPUThe maximum amount of cpu time (in seconds) to be used by each process.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.CoreThe largest size (in bytes) core file that may be created.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.DataThe maximum size (in bytes) of the data segment for a process; this defines how far a program may
extend its break with the sbrk(2) system call.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.FileSizeThe largest size (in bytes) file that may be created.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.MemoryLockThe maximum size (in bytes) which a process may lock into memory using the mlock(2) function.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.NumberOfFilesThe maximum number of open files for this process. Setting this value in a system wide daemon
will set the sysctl(3) kern.maxfiles (SoftResourceLimits) or kern.maxfilesperproc (HardResource-Limits) (HardResourceLimits)
Limits) value in addition to the setrlimit(2) values.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.NumberOfProcessesThe maximum number of simultaneous processes for this user id. Setting this value in a system
wide daemon will set the sysctl(3) kern.maxproc (SoftResourceLimits) or kern.maxprocperuid
(HardResourceLimits) value in addition to the setrlimit(2) values.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.ResidentSetSizeThe maximum size (in bytes) to which a process's resident set size may grow. This imposes a limit on the amount of physical memory to be given to a process; if memory is tight, the system will prefer to take memory from processes that are exceeding their declared resident set size.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.HardResourceLimits.StackThe maximum size (in bytes) of the stack segment for a process; this defines how far a program's stack segment may be extended. Stack extension is performed automatically by the system.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.InitGroupsThis optional key specifies whether initgroups(3) should be called before running the job. The default
is true in 10.5 and false in 10.4. This key will be ignored if the UserName key is not set.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.KeepAliveThis optional key is used to control whether your job is to be kept continuously running or to let demand and conditions control the invocation. The default is false and therefore only demand will start the job. The value may be set to true to unconditionally keep the job alive. Alternatively, a dictio-nary dictionary nary of conditions may be specified to selectively control whether launchd keeps a job alive or not. If multiple keys are provided, launchd ORs them, thus providing maximum flexibility to the job to refine the logic and stall if necessary. If launchd finds no reason to restart the job, it falls back on demand based invocation. Jobs that exit quickly and frequently when configured to be kept alive will be throttled to converve system resources.
Type: null or boolean or submodule
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LabelThis required key uniquely identifies the job to launchd.
Type: string
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LaunchOnlyOnceThis optional key specifies whether the job can only be run once and only once. In other words, if the job cannot be safely respawned without a full machine reboot, then set this key to be true.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LimitLoadFromHostsThis configuration file only applies to hosts NOT listed with this key. Note: One should set kern.host-name kern.hostname
name in sysctl.conf(5) for this feature to work reliably.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LimitLoadToHostsThis configuration file only applies to the hosts listed with this key. Note: One should set kern.host-name kern.hostname
name in sysctl.conf(5) for this feature to work reliably.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LimitLoadToSessionTypeThis configuration file only applies to sessions of the type specified. This key is used in concert with the -S flag to launchctl.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.LowPriorityIOThis optional key specifies whether the kernel should consider this daemon to be low priority when doing file system I/O.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.MachServicesThis optional key is used to specify Mach services to be registered with the Mach bootstrap sub-system. Each key in this dictionary should be the name of service to be advertised. The value of the key must be a boolean and set to true. Alternatively, a dictionary can be used instead of a simple true value. Finally, for the job itself, the values will be replaced with Mach ports at the time of check-in with launchd.
Type: null or submodule
Default: null
Example:
{
ResetAtClose = true;
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.MachServices.HideUntilCheckInReserve the name in the namespace, but cause bootstrap_look_up() to fail until the job has checked in with launchd.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.MachServices.ResetAtCloseIf this boolean is false, the port is recycled, thus leaving clients to remain oblivious to the demand nature of job. If the value is set to true, clients receive port death notifications when the job lets go of the receive right. The port will be recreated atomically with respect to boot-strap_look_up() bootstrap_look_up() strap_look_up() calls, so that clients can trust that after receiving a port death notification, the new port will have already been recreated. Setting the value to true should be done with care. Not all clients may be able to handle this behavior. The default value is false.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.NiceThis optional key specifies what nice(3) value should be applied to the daemon.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.OnDemandThis key was used in Mac OS X 10.4 to control whether a job was kept alive or not. The default was true. This key has been deprecated and replaced in Mac OS X 10.5 and later with the more powerful KeepAlive option.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.ProcessTypeThis optional key describes, at a high level, the intended purpose of the job. The system will apply
resource limits based on what kind of job it is. If left unspecified, the system will apply light
resource limits to the job, throttling its CPU usage and I/O bandwidth. The following are valid values:
Background
Background jobs are generally processes that do work that was not directly requested by the user.
The resource limits applied to Background jobs are intended to prevent them from disrupting the
user experience.
Standard
Standard jobs are equivalent to no ProcessType being set.
Adaptive
Adaptive jobs move between the Background and Interactive classifications based on activity over
XPC connections. See xpc_transaction_begin(3) for details.
Interactive
Interactive jobs run with the same resource limitations as apps, that is to say, none. Interac-tive Interactive
tive jobs are critical to maintaining a responsive user experience, and this key should only be
used if an app's ability to be responsive depends on it, and cannot be made Adaptive.
Type: null or one of "Background", "Standard", "Adaptive", "Interactive"
Default: null
Example: "Background"
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.ProgramThis key maps to the first argument of execvp(3). If this key is missing, then the first element of
the array of strings provided to the ProgramArguments will be used instead. This key is required in
the absence of the ProgramArguments key.
Type: null or path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.ProgramArgumentsThis key maps to the second argument of execvp(3). This key is required in the absence of the Program
key. Please note: many people are confused by this key. Please read execvp(3) very carefully!
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.QueueDirectoriesMuch like the WatchPaths option, this key will watch the paths for modifications. The difference being that the job will only be started if the path is a directory and the directory is not empty.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.RootDirectoryThis optional key is used to specify a directory to chroot(2) to before running the job.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.RunAtLoadThis optional key is used to control whether your job is launched once at the time the job is loaded. The default is false.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SocketsThis optional key is used to specify launch on demand sockets that can be used to let launchd know when
to run the job. The job must check-in to get a copy of the file descriptors using APIs outlined in
launch(3). The keys of the top level Sockets dictionary can be anything. They are meant for the appli-cation application
cation developer to use to differentiate which descriptors correspond to which application level proto-cols protocols
cols (e.g. http vs. ftp vs. DNS...). At check-in time, the value of each Sockets dictionary key will
be an array of descriptors. Daemon/Agent writers should consider all descriptors of a given key to be
to be effectively equivalent, even though each file descriptor likely represents a different networking
protocol which conforms to the criteria specified in the job configuration file.
The parameters below are used as inputs to call getaddrinfo(3).
Type: null or attribute set of submodule
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.BonjourThis optional key can be used to request that the service be registered with the
mDNSResponder(8). If the value is boolean, the service name is inferred from the SockService-Name. SockServiceName.
Name.
Type: null or boolean or list of string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.MulticastGroupThis optional key can be used to request that the datagram socket join a multicast group. If the
value is a hostname, then getaddrinfo(3) will be used to join the correct multicast address for a
given socket family. If an explicit IPv4 or IPv6 address is given, it is required that the Sock-Family SockFamily
Family family also be set, otherwise the results are undefined.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SecureSocketWithKeyThis optional key is a variant of SockPathName. Instead of binding to a known path, a securely generated socket is created and the path is assigned to the environment variable that is inher-ited inherited ited by all jobs spawned by launchd.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockFamilyThis optional key can be used to specifically request that "IPv4" or "IPv6" socket(s) be created.
Type: null or one of "IPv4", "IPv6"
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockNodeNameThis optional key specifies the node to connect(2) or bind(2) to.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockPassiveThis optional key specifies whether listen(2) or connect(2) should be called on the created file
descriptor. The default is true ("to listen").
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockPathModeThis optional key specifies the mode of the socket. Known bug: Property lists don't support octal, so please convert the value to decimal.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockPathNameThis optional key implies SockFamily is set to "Unix". It specifies the path to connect(2) or
bind(2) to.
Type: null or path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockProtocolThis optional key specifies the protocol to be passed to socket(2). The only value understood by
this key at the moment is "TCP".
Type: null or value "TCP" (singular enum)
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockServiceNameThis optional key specifies the service on the node to connect(2) or bind(2) to.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.Sockets.<name>.SockTypeThis optional key tells launchctl what type of socket to create. The default is "stream" and other valid values for this key are "dgram" and "seqpacket" respectively.
Type: null or one of "stream", "dgram", "seqpacket"
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimitsResource limits to be imposed on the job. These adjust variables set with setrlimit(2). The following
keys apply:
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.CPUThe maximum amount of cpu time (in seconds) to be used by each process.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.CoreThe largest size (in bytes) core file that may be created.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.DataThe maximum size (in bytes) of the data segment for a process; this defines how far a program may
extend its break with the sbrk(2) system call.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.FileSizeThe largest size (in bytes) file that may be created.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.MemoryLockThe maximum size (in bytes) which a process may lock into memory using the mlock(2) function.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.NumberOfFilesThe maximum number of open files for this process. Setting this value in a system wide daemon
will set the sysctl(3) kern.maxfiles (SoftResourceLimits) or kern.maxfilesperproc (HardResource-Limits) (HardResourceLimits)
Limits) value in addition to the setrlimit(2) values.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.NumberOfProcessesThe maximum number of simultaneous processes for this user id. Setting this value in a system
wide daemon will set the sysctl(3) kern.maxproc (SoftResourceLimits) or kern.maxprocperuid
(HardResourceLimits) value in addition to the setrlimit(2) values.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.ResidentSetSizeThe maximum size (in bytes) to which a process's resident set size may grow. This imposes a limit on the amount of physical memory to be given to a process; if memory is tight, the system will prefer to take memory from processes that are exceeding their declared resident set size.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.SoftResourceLimits.StackThe maximum size (in bytes) of the stack segment for a process; this defines how far a program's stack segment may be extended. Stack extension is performed automatically by the system.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StandardErrorPathThis optional key specifies what file should be used for data being sent to stderr when using stdio(3).
Type: null or path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StandardInPathThis optional key specifies what file should be used for data being supplied to stdin when using
stdio(3).
Type: null or path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StandardOutPathThis optional key specifies what file should be used for data being sent to stdout when using stdio(3).
Type: null or path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarIntervalThis optional key causes the job to be started every calendar interval as specified. Missing arguments
are considered to be wildcard. The semantics are much like crontab(5). Unlike cron which skips job
invocations when the computer is asleep, launchd will start the job the next time the computer wakes
up. If multiple intervals transpire before the computer is woken, those events will be coalesced into
one event upon wake from sleep.
Type: null or list of submodule
Default: null
Example:
{
Hour = 2; Minute = 30;
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarInterval.*.DayThe day on which this job will be run.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarInterval.*.HourThe hour on which this job will be run.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarInterval.*.MinuteThe minute on which this job will be run.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarInterval.*.MonthThe month on which this job will be run.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartCalendarInterval.*.WeekdayThe weekday on which this job will be run (0 and 7 are Sunday).
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartIntervalThis optional key causes the job to be started every N seconds. If the system is asleep, the job will be started the next time the computer wakes up. If multiple intervals transpire before the computer is woken, those events will be coalesced into one event upon wake from sleep.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.StartOnMountThis optional key causes the job to be started every time a filesystem is mounted.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.ThrottleIntervalThis key lets one override the default throttling policy imposed on jobs by launchd. The value is in seconds, and by default, jobs will not be spawned more than once every 10 seconds. The principle behind this is that jobs should linger around just in case they are needed again in the near future. This not only reduces the latency of responses, but it encourages developers to amortize the cost of program invocation.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.TimeOutThe recommended idle time out (in seconds) to pass to the job. If no value is specified, a default time out will be supplied by launchd for use by the job at check in time.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.UmaskThis optional key specifies what value should be passed to umask(2) before running the job. Known bug:
Property lists don't support octal, so please convert the value to decimal.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.UserNameThis optional key specifies the user to run the job as. This key is only applicable when launchd is running as root.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.WaitForDebuggerThis optional key specifies that launchd should instruct the kernel to have the job wait for a debugger to attach before any code in the job is executed.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.WatchPathsThis optional key causes the job to be started if any one of the listed paths are modified.
Type: null or list of path
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.WorkingDirectoryThis optional key is used to specify a directory to chdir(2) to before running the job.
Type: null or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.inetdCompatibilityThe presence of this key specifies that the daemon expects to be run as if it were launched from inetd.
Type: null or submodule
Default: null
Example:
{
Wait = true;
}
Declared by:
<home-manager/modules/launchd/default.nix>
|
launchd.agents.<name>.config.inetdCompatibility.WaitThis flag corresponds to the "wait" or "nowait" option of inetd. If true, then the listening
socket is passed via the standard in/out/error file descriptors. If false, then accept(2) is
called on behalf of the job, and the result is passed via the standard in/out/error descriptors.
Type: null or boolean or string
Default: null
Declared by:
<home-manager/modules/launchd/default.nix>
|
libThis option allows modules to define helper functions, constants, etc.
Type: attribute set of attribute set
Default:
{
}
Declared by:
<home-manager/modules/misc/lib.nix>
|
manual.html.enableWhether to install the HTML manual. This also installs the home-manager-help tool, which opens a local copy of the Home Manager manual in the system web browser.
Type: boolean
Default: false
Declared by:
<home-manager/modules/manual.nix>
|
manual.json.enableWhether to install a JSON formatted list of all Home Manager
options. This can be located at
<profile directory>/share/doc/home-manager/options.json,
and may be used for navigating definitions, auto-completing,
and other miscellaneous tasks.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/manual.nix>
|
manual.manpages.enableWhether to install the configuration manual page. The manual can be reached by man home-configuration.nix.
When looking at the manual page pretend that all references to NixOS stuff are actually references to Home Manager stuff. Thanks!
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/manual.nix>
|
news.displayHow unread and relevant news should be presented when running home-manager build and home-manager switch.
The options are
silentDo not print anything during build or switch. The home-manager news command still works for viewing the entries.
notifyThe number of unread and relevant news entries will be printed to standard output. The home-manager news command can later be used to view the entries.
showA pager showing unread news entries is opened.
Type: one of "silent", "notify", "show"
Default: "notify"
Declared by:
<home-manager/modules/misc/news.nix>
|
nix.packageThe Nix package that the configuration should be generated for.
Type: null or package
Default: null
Example: pkgs.nix
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.checkConfigIf enabled (the default), checks for data type mismatches and that Nix can parse the generated nix.conf.
Type: boolean
Default: true
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.extraOptionsAdditional text appended to nix.conf.
Type: strings concatenated with "\n"
Default: ""
Example:
'' keep-outputs = true keep-derivations = true ''
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.registryUser level flake registry.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.registry.<name>.exactWhether the from reference needs to match exactly. If set,
a from reference like nixpkgs does not
match with a reference like nixpkgs/nixos-20.03.
Type: boolean
Default: true
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.registry.<name>.flakeThe flake input to which from> is to be rewritten.
Type: null or attribute set
Default: null
Example: nixpkgs
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.registry.<name>.fromThe flake reference to be rewritten.
Type: attribute set of string or signed integer or boolean or package
Example:
{
id = "nixpkgs"; type = "indirect";
}
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.registry.<name>.toThe flake reference to which from> is to be rewritten.
Type: attribute set of string or signed integer or boolean or package
Example:
{
owner = "my-org"; repo = "my-nixpkgs"; type = "github";
}
Declared by:
<home-manager/modules/misc/nix.nix>
|
nix.settingsConfiguration for Nix, see https://nixos.org/manual/nix/stable/#sec-conf-file or nix.conf(5) for avalaible options. The value declared here will be translated directly to the key-value pairs Nix expects.
Configuration specified in nix.extraOptions which will be appended
verbatim to the resulting config file.
Type: attribute set of Nix config atom (null, bool, int, float, str, path or package) or list of Nix config atom (null, bool, int, float, str, path or package)
Default:
{
}
Example:
{
use-sandbox = true;
show-trace = true;
system-features = [ "big-parallel" "kvm" "recursive-nix" ];
}
Declared by:
<home-manager/modules/misc/nix.nix>
|
nixpkgs.configThe configuration of the Nix Packages collection. (For details, see the Nixpkgs documentation.) It allows you to set package configuration options.
If null, then configuration is taken from
the fallback location, for example,
~/.config/nixpkgs/config.nix.
Note, this option will not apply outside your Home Manager configuration like when installing manually through nix-env. If you want to apply it both inside and outside Home Manager you can put it in a separate file and include something like
nixpkgs.config = import ./nixpkgs-config.nix; xdg.configFile."nixpkgs/config.nix".source = ./nixpkgs-config.nix;
in your Home Manager configuration.
Type: null or nixpkgs config
Default: null
Example:
{
allowBroken = true;
}
Declared by:
<home-manager/modules/misc/nixpkgs.nix>
|
nixpkgs.overlaysList of overlays to use with the Nix Packages collection. (For details, see the Nixpkgs documentation.) It allows you to override packages globally. This is a function that takes as an argument the original Nixpkgs. The first argument should be used for finding dependencies, and the second should be used for overriding recipes.
If null, then the overlays are taken from
the fallback location, for example,
~/.config/nixpkgs/overlays.
Like nixpkgs.config this option only
applies within the Home Manager configuration. See
nixpkgs.config for a suggested setup that
works both internally and externally.
Type: null or list of nixpkgs overlay
Default: null
Example:
[ (self: super: {
openssh = super.openssh.override {
hpnSupport = true;
withKerberos = true;
kerberos = self.libkrb5;
};
};
) ]
Declared by:
<home-manager/modules/misc/nixpkgs.nix>
|
pam.sessionVariablesEnvironment variables that will be set for the PAM session. The variable values must be as described in pam_env.conf(5).
Note, this option will become deprecated in the future and its use is therefore discouraged.
Type: attribute set
Default:
{
}
Example:
{
EDITOR = "vim";
}
Declared by:
<home-manager/modules/misc/pam.nix>
|
pam.yubico.authorizedYubiKeys.idsList of authorized YubiKey token IDs. Refer to https://developers.yubico.com/yubico-pam for details on how to obtain the token ID of a YubiKey.
Type: list of string of length 12
Default:
[
]
Declared by:
<home-manager/modules/misc/pam.nix>
|
pam.yubico.authorizedYubiKeys.pathFile path to write the authorized YubiKeys,
relative to HOME.
Type: string
Default: ".yubico/authorized_yubikeys"
Declared by:
<home-manager/modules/misc/pam.nix>
|
programs.abook.enableWhether to enable Abook.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/abook.nix>
|
programs.abook.extraConfigExtra lines added to $HOME/.config/abook/abookrc.
Available configuration options are described in the abook repository:
https://sourceforge.net/p/abook/git/ci/master/tree/sample.abookrc.
Type: strings concatenated with "\n"
Default: ""
Example:
'' field pager = Pager view CONTACT = name, email set autosave=true ''
Declared by:
<home-manager/modules/programs/abook.nix>
|
programs.aerc.enableWhether to enable aerc.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.aerc.extraAccountsExtra lines added to $HOME/.config/aerc/accounts.conf.
See aerc-config(5).
Type: strings concatenated with "\n" or attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { Work = { source = "maildir://~/Maildir/work"; }; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.aerc.extraBindsExtra lines added to $HOME/.config/aerc/binds.conf.
Global keybindings can be set in the `global` section.
See aerc-config(5).
Type: strings concatenated with "\n" or attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { messages = { q = ":quit<Enter>"; }; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.aerc.extraConfigExtra lines added to $HOME/.config/aerc/aerc.conf.
See aerc-config(5).
Type: strings concatenated with "\n" or attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma
Default:
{
}
Example: { ui = { sort = "-r date"; }; }
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.aerc.stylesetsStylesets added to $HOME/.config/aerc/stylesets/.
See aerc-stylesets(7).
Type: attribute set of attribute set of values (null, bool, int, string of float) or a list of values, that will be joined with a comma or strings concatenated with "\n"
Default:
{
}
Example:
{ default = { ui = { "tab.selected.reverse" = toggle; }; }; };
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.aerc.templatesTemplates added to $HOME/.config/aerc/templates/.
See aerc-templates(7).
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Example:
{ new_message = "Hello!"; };
Declared by:
<home-manager/modules/programs/aerc.nix>
|
programs.afew.enableWhether to enable the afew initial tagging script for Notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/afew.nix>
|
programs.afew.extraConfigExtra lines added to afew configuration file. Available configuration options are described in the afew manual: https://afew.readthedocs.io/en/latest/configuration.html.
Type: strings concatenated with "\n"
Default:
'' [SpamFilter] [KillThreadsFilter] [ListMailsFilter] [ArchiveSentMailsFilter] [InboxFilter] ''
Example:
'' [SpamFilter] [Filter.0] query = from:pointyheaded@boss.com tags = -new;+boss message = Message from above [InboxFilter] ''
Declared by:
<home-manager/modules/programs/afew.nix>
|
programs.alacritty.enableWhether to enable Alacritty.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/alacritty.nix>
|
programs.alacritty.packageThe Alacritty package to install.
Type: package
Default: pkgs.alacritty
Declared by:
<home-manager/modules/programs/alacritty.nix>
|
programs.alacritty.settingsConfiguration written to
$XDG_CONFIG_HOME/alacritty/alacritty.yml. See
https://github.com/alacritty/alacritty/blob/master/alacritty.yml
for the default configuration.
Type: YAML value
Default:
{
}
Example:
{
window.dimensions = {
lines = 3;
columns = 200;
};
key_bindings = [
{
key = "K";
mods = "Control";
chars = "\\x0c";
}
];
}
Declared by:
<home-manager/modules/programs/alacritty.nix>
|
programs.alot.enableWhether to enable the Alot mail user agent. Alot uses the Notmuch email system and will therefore be automatically enabled for each email account that is managed by Notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindingsKeybindings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.bufferlistBufferlist mode keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.envelopeEnvelope mode keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.globalGlobal keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.searchSearch mode keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.taglistTaglist mode keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.bindings.threadThread mode keybindings.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.extraConfigExtra lines added to alot configuration file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.hooksContent of the hooks file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.settingsConfiguration options added to alot configuration file.
Type: attribute set of string or signed integer or boolean or floating point number
Default:
{
auto_remove_unread = true; handle_mouse = true; initial_command = "search tag:inbox AND NOT tag:killed"; prefer_plaintext = true;
}
Example:
{
auto_remove_unread = true;
ask_subject = false;
thread_indent_replies = 2;
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.tagsHow to display the tags.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.tags.<name>.focusHow to display the tag when focused.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.tags.<name>.normalHow to display the tag when unfocused. See https://alot.readthedocs.io/en/latest/configuration/theming.html#tagstring-formatting.
Type: null or string
Default: null
Example: "'','', 'white','light red', 'white','#d66'"
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.tags.<name>.translatedFixed string representation for this tag. The tag can be
hidden from view, if the key translated is set to
"", the empty string.
Type: null or string
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.alot.tags.<name>.translationA pair of strings that define a regular substitution to
compute the string representation on the fly using
re.sub.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/alot.nix>
|
programs.aria2.enableWhether to enable aria2.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/aria2.nix>
|
programs.aria2.extraConfigExtra lines added to aria2.conf file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/aria2.nix>
|
programs.aria2.settingsOptions to add to aria2.conf file.
See
aria2c(1)
for options.
Type: attribute set of boolean or floating point number or signed integer or string
Default:
{
}
Example:
{
listen-port = 60000;
dht-listen-port = 60000;
seed-ratio = 1.0;
max-upload-limit = "50K";
ftp-pasv = true;
}
Declared by:
<home-manager/modules/programs/aria2.nix>
|
programs.astroid.enableWhether to enable Astroid.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/astroid.nix>
|
programs.astroid.externalEditorYou can use %1, %2, and
%3 to refer respectively to:
file name
server name
socket ID
See https://github.com/astroidmail/astroid/wiki/Customizing-editor.
Type: null or string
Default: null
Example: "nvim-qt -- -c 'set ft=mail' '+set fileencoding=utf-8' '+set ff=unix' '+set enc=utf-8' '+set fo+=w' %1"
Declared by:
<home-manager/modules/programs/astroid.nix>
|
programs.astroid.extraConfigJSON config that will override the default Astroid configuration.
Type: JSON value
Default:
{
}
Example:
{
poll.interval = 0;
}
Declared by:
<home-manager/modules/programs/astroid.nix>
|
programs.astroid.pollScriptScript to run to fetch/update mails.
Type: string
Default: ""
Example: "mbsync gmail"
Declared by:
<home-manager/modules/programs/astroid.nix>
|
programs.atuin.enableWhether to enable atuin.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.atuin.enableBashIntegrationWhether to enable Atuin's Bash integration. This will bind
ctrl-r to open the Atuin history.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.atuin.enableFishIntegrationWhether to enable Atuin's Fish integration.
If enabled, this will bind the up-arrow key to open the Atuin history.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.atuin.enableZshIntegrationWhether to enable Atuin's Zsh integration.
If enabled, this will bind ctrl-r and the up-arrow
key to open the Atuin history.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.atuin.packageThe package to use for atuin.
Type: package
Default: pkgs.atuin
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.atuin.settingsConfiguration written to
$XDG_CONFIG_HOME/atuin/config.toml.
See https://github.com/ellie/atuin/blob/main/docs/config.md for the full list of options.
Type: Atuin configuration
Default:
{
}
Example:
{
auto_sync = true;
sync_frequency = "5m";
sync_address = "https://api.atuin.sh";
search_mode = "prefix";
}
Declared by:
<home-manager/modules/programs/atuin.nix>
|
programs.autojump.enableWhether to enable autojump.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/autojump.nix>
|
programs.autojump.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/autojump.nix>
|
programs.autojump.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/autojump.nix>
|
programs.autojump.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/autojump.nix>
|
programs.autorandr.enableWhether to enable Autorandr.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.hooksGlobal hook scripts
Type: submodule
Default:
{
}
Example:
{
postswitch = {
"notify-i3" = "${pkgs.i3}/bin/i3-msg restart";
"change-background" = readFile ./change-background.sh;
"change-dpi" = ''
case "$AUTORANDR_CURRENT_PROFILE" in
default)
DPI=120
;;
home)
DPI=192
;;
work)
DPI=144
;;
*)
echo "Unknown profle: $AUTORANDR_CURRENT_PROFILE"
exit 1
esac
echo "Xft.dpi: $DPI" | ${pkgs.xorg.xrdb}/bin/xrdb -merge
''
};
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.hooks.postswitchPostswitch hook executed after mode switch.
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.hooks.predetectPredetect hook executed before autorandr attempts to run xrandr.
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.hooks.preswitchPreswitch hook executed before mode switch.
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profilesAutorandr profiles specification.
Type: attribute set of submodule
Default:
{
}
Example:
{
"work" = {
fingerprint = {
eDP1 = "<EDID>";
DP1 = "<EDID>";
};
config = {
eDP1.enable = false;
DP1 = {
enable = true;
crtc = 0;
primary = true;
position = "0x0";
mode = "3840x2160";
gamma = "1.0:0.909:0.833";
rate = "60.00";
rotate = "left";
};
};
hooks.postswitch = readFile ./work-postswitch.sh;
};
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.configPer output profile configuration.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.enableWhether to enable the output.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.crtcOutput video display controller.
Type: null or unsigned integer, meaning >=0
Default: null
Example: 0
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.dpiOutput DPI configuration.
Type: null or positive integer, meaning >0
Default: null
Example: 96
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.filterInterpolation method to be used for scaling the output.
Type: null or one of "bilinear", "nearest"
Default: null
Example: "nearest"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.gammaOutput gamma configuration.
Type: string
Default: ""
Example: "1.0:0.909:0.833"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.modeOutput resolution.
Type: string
Default: ""
Example: "3840x2160"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.positionOutput position
Type: string
Default: ""
Example: "5760x0"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.primaryWhether output should be marked as primary
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.rateOutput framerate.
Type: string
Default: ""
Example: "60.00"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.rotateOutput rotate configuration.
Type: null or one of "normal", "left", "right", "inverted"
Default: null
Example: "left"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.scaleOutput scale configuration.
Either configure by pixels or a scaling factor. When using pixel method the
xrandr(1)
option
--scale-from
will be used; when using factor method the option
--scale
will be used.
This option is a shortcut version of the transform option and they are mutually exclusive.
Type: null or submodule
Default: null
Example:
{
x = 1.25;
y = 1.25;
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.scale.methodOutput scaling method.
Type: one of "factor", "pixel"
Default: "factor"
Example: "pixel"
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.scale.xHorizontal scaling factor/pixels.
Type: floating point number or positive integer, meaning >0
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.scale.yVertical scaling factor/pixels.
Type: floating point number or positive integer, meaning >0
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.config.<name>.transformRefer to xrandr(1) for the documentation of the transform matrix.
Type: null or 3×3 matrix of floating point numbers
Default: null
Example:
[ [ 0.6 0.0 0.0 ] [ 0.0 0.6 0.0 ] [ 0.0 0.0 1.0 ] ]
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.fingerprintOutput name to EDID mapping.
Use autorandr --fingerprint to get current setup values.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.hooksProfile hook scripts.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.hooks.postswitchPostswitch hook executed after mode switch.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.hooks.predetectPredetect hook executed before autorandr attempts to run xrandr.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.autorandr.profiles.<name>.hooks.preswitchPreswitch hook executed before mode switch.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/autorandr.nix>
|
programs.bash.enableWhether to enable GNU Bourne-Again SHell.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.enableCompletionWhether to enable Bash completion for all interactive Bash shells.
Note, if you use NixOS or nix-darwin and do not have Bash completion enabled in the system configuration, then make sure to add
environment.pathsToLink = [ "/share/bash-completion" ];
to your system configuration to get completion for system packages.
Note, the legacy /etc/bash_completion.d path is
not supported by Home Manager.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.enableVteIntegrationWhether to enable integration with terminals using the VTE library. This will let the terminal track the current working directory.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/vte.nix>
|
programs.bash.bashrcExtraExtra commands that should be placed in ~/.bashrc.
Note that these commands will be run even in non-interactive shells.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.historyControlControlling how commands are saved on the history list.
Type: list of one of "erasedups", "ignoredups", "ignorespace"
Default:
[
]
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.historyFileLocation of the bash history file.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.historyFileSizeNumber of history lines to keep on file.
Type: signed integer
Default: 100000
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.historyIgnoreList of commands that should not be saved to the history list.
Type: list of string
Default:
[
]
Example:
[
"ls" "cd" "exit"
]
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.historySizeNumber of history lines to keep in memory.
Type: signed integer
Default: 10000
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.initExtraExtra commands that should be run when initializing an interactive shell.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.logoutExtraExtra commands that should be run when logging out of an interactive shell.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.profileExtraExtra commands that should be run when initializing a login shell.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.sessionVariablesEnvironment variables that will be set for the Bash session.
Type: attribute set
Default:
{
}
Example:
{
MAILCHECK = 30;
}
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.shellAliasesAn attribute set that maps aliases (the top level attribute names in this option) to command strings or directly to build outputs.
Type: attribute set of string
Default:
{
}
Example:
{
ll = "ls -l";
".." = "cd ..";
}
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bash.shellOptionsShell options to set. Prefix an option with
“-” to unset.
Type: list of string
Default:
[
"histappend" "checkwinsize" "extglob" "globstar" "checkjobs"
]
Example:
[
"extglob" "-cdspell"
]
Declared by:
<home-manager/modules/programs/bash.nix>
|
programs.bashmount.enableWhether to enable bashmount.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/bashmount.nix>
|
programs.bashmount.extraConfigConfiguration written to
$XDG_CONFIG_HOME/bashmount/config. Look at
https://github.com/jamielinux/bashmount/blob/master/bashmount.conf
for explanation about possible values.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/bashmount.nix>
|
programs.bat.enableWhether to enable bat, a cat clone with wings.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/bat.nix>
|
programs.bat.configBat configuration.
Type: attribute set of string or list of string
Default:
{
}
Example:
{
map-syntax =
[
"*.jenkinsfile:Groovy" "*.props:Java Properties"
]
; pager = "less -FR"; theme = "TwoDark";
}
Declared by:
<home-manager/modules/programs/bat.nix>
|
programs.bat.themesAdditional themes to provide.
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Example:
{
dracula = builtins.readFile (pkgs.fetchFromGitHub {
owner = "dracula";
repo = "sublime"; # Bat uses sublime syntax for its themes
rev = "26c57ec282abcaa76e57e055f38432bd827ac34e";
sha256 = "019hfl4zbn4vm4154hh3bwk6hm7bdxbr1hdww83nabxwjn99ndhv";
} + "/Dracula.tmTheme");
}
Declared by:
<home-manager/modules/programs/bat.nix>
|
programs.beets.enableWhether to enable the beets music library manager. This
defaults to false for state
version ≥ 19.03. For earlier versions beets is enabled if
programs.beets.settings is non-empty.
Type: boolean
Default: "false"
Declared by:
<home-manager/modules/programs/beets.nix>
|
programs.beets.packageThe beets package to use.
Can be used to specify extensions.
Type: package
Default: pkgs.beets
Example: (pkgs.beets.override { enableCheck = true; })
Declared by:
<home-manager/modules/programs/beets.nix>
|
programs.beets.settingsConfiguration written to
$XDG_CONFIG_HOME/beets/config.yaml
Type: YAML value
Default:
{
}
Declared by:
<home-manager/modules/programs/beets.nix>
|
programs.bottom.enableWhether to enable bottom, a cross-platform graphical process/system monitor with a customizable interface.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/bottom.nix>
|
programs.bottom.packagePackage providing bottom.
Type: package
Default: pkgs.bottom
Declared by:
<home-manager/modules/programs/bottom.nix>
|
programs.bottom.settingsConfiguration written to
$XDG_CONFIG_HOME/bottom/bottom.toml on Linux or
$HOME/Library/Application Support/bottom/bottom.toml on Darwin.
See https://github.com/ClementTsang/bottom/blob/master/sample_configs/default_config.toml for the default configuration.
Type: TOML value
Default:
{
}
Example:
{
flags = {
avg_cpu = true;
temperature_type = "c";
};
colors = {
low_battery_color = "red";
};
}
Declared by:
<home-manager/modules/programs/bottom.nix>
|
programs.broot.enableWhether to enable Broot, a better way to navigate directories.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.packagePackage providing broot
Type: package
Default: pkgs.broot
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.modalWhether to enable modal (vim) mode.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.skinColor configuration.
Complete list of keys (expected to change before the v1 of broot):
char_match
code
directory
exe
file
file_error
flag_label
flag_value
input
link
permissions
selected_line
size_bar_full
size_bar_void
size_text
spinner
status_error
status_normal
table_border
tree
unlisted
Add _fg for a foreground color and
_bg for a background colors.
Type: attribute set of string
Default:
{
}
Example:
{
status_normal_fg = "grayscale(18)";
status_normal_bg = "grayscale(3)";
status_error_fg = "red";
status_error_bg = "yellow";
tree_fg = "red";
selected_line_bg = "grayscale(7)";
permissions_fg = "grayscale(12)";
size_bar_full_bg = "red";
size_bar_void_bg = "black";
directory_fg = "lightyellow";
input_fg = "cyan";
flag_value_fg = "lightyellow";
table_border_fg = "red";
code_fg = "lightyellow";
}
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.broot.verbsDefine new verbs. For more information, see https://dystroy.org/broot/documentation/configuration/#verb-definition-attributes.
The possible attributes are:
invocation (optional)how the verb is called by the user, with placeholders for arguments
execution (mandatory)how the verb is executed
key (optional)a keyboard key triggering execution
shortcut (optional)an alternate way to call the verb (without the arguments part)
leave_broot (optional)whether to quit broot on execution
(default: true)
from_shell (optional)whether the verb must be executed from the
parent shell (default:
false)
Type: list of attribute set of boolean or string
Default:
[
{
execution = ":parent"; invocation = "p";
}
{
execution = "$EDITOR {file}"; invocation = "edit"; shortcut = "e";
}
{
execution = "$EDITOR {directory}/{subpath}"; invocation = "create {subpath}";
}
{
execution = "less {file}"; invocation = "view";
}
]
Example:
[
{ invocation = "p"; execution = ":parent"; }
{ invocation = "edit"; shortcut = "e"; execution = "$EDITOR {file}" ; }
{ invocation = "create {subpath}"; execution = "$EDITOR {directory}/{subpath}"; }
{ invocation = "view"; execution = "less {file}"; }
{
invocation = "blop {name}\\.{type}";
execution = "/bin/mkdir {parent}/{type} && /usr/bin/nvim {parent}/{type}/{name}.{type}";
from_shell = true;
}
]
Declared by:
<home-manager/modules/programs/broot.nix>
|
programs.browserpass.enableWhether to enable the browserpass extension host application.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/browserpass.nix>
|
programs.browserpass.browsersWhich browsers to install browserpass for
Type: list of one of "brave", "chrome", "chromium", "firefox", "vivaldi"
Default:
[
"brave" "chrome" "chromium" "firefox" "vivaldi"
]
Example:
[
"firefox"
]
Declared by:
<home-manager/modules/programs/browserpass.nix>
|
programs.btop.enableWhether to enable btop.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/btop.nix>
|
programs.btop.packageThe btop package to use.
Type: package
Default: pkgs.btop
Declared by:
<home-manager/modules/programs/btop.nix>
|
programs.btop.extraConfigExtra lines added to the btop.conf file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/btop.nix>
|
programs.btop.settingsOptions to add to btop.conf file.
See https://github.com/aristocratos/btop#configurability
for options.
Type: attribute set of boolean or floating point number or signed integer or string
Default:
{
}
Example:
{
color_theme = "Default"; theme_background = false;
}
Declared by:
<home-manager/modules/programs/btop.nix>
|
programs.chromium.enableWhether to enable Chromium.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.packageThe Chromium package to use.
Type: package
Default: pkgs.chromium
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.commandLineArgsList of command-line arguments to be passed to Chromium.
Note this option does not have any effect when using a
custom package for programs.chromium.package.
For a list of common switches, see Chrome switches.
To search switches for other components, see Chromium codesearch.
Type: list of string
Default:
[
]
Example:
[
"--enable-logging=stderr" "--ignore-gpu-blocklist"
]
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.extensionsList of Chromium extensions to install. To find the extension ID, check its URL on the Chrome Web Store.
To install extensions outside of the Chrome Web Store set
updateUrl or crxPath and
version as explained in the
Chrome
documentation.
Type: list of submodule or string convertible to it
Default:
[
]
Example:
[
{ id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; } # ublock origin
{
id = "dcpihecpambacapedldabdbpakmachpb";
updateUrl = "https://raw.githubusercontent.com/iamadamdev/bypass-paywalls-chrome/master/updates.xml";
}
{
id = "aaaaaaaaaabbbbbbbbbbcccccccccc";
crxPath = "/home/share/extension.crx";
version = "1.0";
}
]
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.extensions.*.crxPathPath to the extension's crx file. Linux only.
Type: null or path
Default: null
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.extensions.*.idThe extension's ID from the Chome Web Store url or the unpacked crx.
Type: string matching the pattern [a-zA-Z]{32}
Default: ""
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.extensions.*.updateUrlURL of the extension's update manifest XML file. Linux only.
Type: string
Default: "https://clients2.google.com/service/update2/crx"
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.chromium.extensions.*.versionThe extension's version, required for local installation. Linux only.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/chromium.nix>
|
programs.command-not-found.enableWhether to enable command-not-found hook for interactive shell.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/command-not-found/command-not-found.nix>
|
programs.command-not-found.dbPathAbsolute path to programs.sqlite. By
default this file will be provided by your channel
(nixexprs.tar.xz).
Type: path
Default: "/nix/var/nix/profiles/per-user/root/channels/nixos/programs.sqlite"
Declared by:
<home-manager/modules/programs/command-not-found/command-not-found.nix>
|
programs.dircolors.enableWhether to manage .dir_colors
and set LS_COLORS.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.dircolors.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.dircolors.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.dircolors.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.dircolors.extraConfigExtra lines added to .dir_colors file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.dircolors.settingsOptions to add to .dir_colors file.
See dircolors --print-database
for options.
Type: attribute set of string
Default:
{
}
Example:
{
OTHER_WRITABLE = "30;46";
".sh" = "01;32";
".csh" = "01;32";
}
Declared by:
<home-manager/modules/programs/dircolors.nix>
|
programs.direnv.enableWhether to enable direnv, the environment switcher.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.enableFishIntegrationWhether to enable Fish integration. Note, enabling the direnv module will always active its functionality for Fish since the direnv package automatically gets loaded in Fish. If this is not the case try adding
environment.pathsToLink = [ "/share/fish" ];
to the system configuration.
Type: boolean (read only)
Default: true
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.configConfiguration written to
$XDG_CONFIG_HOME/direnv/config.toml.
See direnv.toml(1). for the full list of options.
Type: TOML value
Default:
{
}
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.nix-direnv.enableWhether to enable nix-direnv, a fast, persistent use_nix implementation for direnv.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.direnv.stdlibCustom stdlib written to
$XDG_CONFIG_HOME/direnv/direnvrc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/direnv.nix>
|
programs.eclipse.enableWhether to enable Eclipse.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/eclipse.nix>
|
programs.eclipse.enableLombokWhether to enable the Lombok Java Agent in Eclipse. This is necessary to use the Lombok class annotations.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/eclipse.nix>
|
programs.eclipse.packageThe Eclipse package to install.
Type: package
Default: pkgs.eclipses.eclipse-platform
Example: pkgs.eclipses.eclipse-java
Declared by:
<home-manager/modules/programs/eclipse.nix>
|
programs.eclipse.jvmArgsJVM arguments to use for the Eclipse process.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/eclipse.nix>
|
programs.eclipse.pluginsPlugins that should be added to Eclipse.
Type: list of package
Default:
[
]
Declared by:
<home-manager/modules/programs/eclipse.nix>
|
programs.emacs.enableWhether to enable Emacs.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/emacs.nix>
|
programs.emacs.packageThe Emacs package to use.
Type: package
Default: pkgs.emacs
Example: pkgs.emacs25-nox
Declared by:
<home-manager/modules/programs/emacs.nix>
|
programs.emacs.extraConfigConfiguration to include in the Emacs default init file. See https://www.gnu.org/software/emacs/manual/html_node/elisp/Init-File.html for more.
Type: strings concatenated with "\n"
Default: ""
Example:
'' (setq standard-indent 2) ''
Declared by:
<home-manager/modules/programs/emacs.nix>
|
programs.emacs.extraPackagesExtra packages available to Emacs. To get a list of available packages run: nix-env -f '<nixpkgs>' -qaP -A emacsPackages.
Type: Function that takes an attribute set and returns a list containing a selection of the values of the input set
Default: "epkgs: []"
Example: epkgs: [ epkgs.emms epkgs.magit ]
Declared by:
<home-manager/modules/programs/emacs.nix>
|
programs.emacs.overridesAllows overriding packages within the Emacs package set.
Type: An overlay function, takes self and super and returns an attribute set overriding the desired attributes.
Default: "self: super: {}"
Example:
self: super: rec {
haskell-mode = self.melpaPackages.haskell-mode;
# ...
};
Declared by:
<home-manager/modules/programs/emacs.nix>
|
programs.eww.enableWhether to enable eww.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/eww.nix>
|
programs.eww.packageThe eww package to install.
Type: package
Default: pkgs.eww
Example: pkgs.eww
Declared by:
<home-manager/modules/programs/eww.nix>
|
programs.eww.configDirThe directory that gets symlinked to
$XDG_CONFIG_HOME/eww.
Type: path
Example: ./eww-config-dir
Declared by:
<home-manager/modules/programs/eww.nix>
|
programs.exa.enableWhether to enable exa, a modern replacement for ls.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/exa.nix>
|
programs.exa.enableAliasesWhether to enable recommended exa aliases.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/exa.nix>
|
programs.feh.enableWhether to enable feh - a fast and light image viewer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/feh.nix>
|
programs.feh.buttonsOverride feh's default mouse button mapping. If you want to disable an action, set its value to null. If you want to bind multiple buttons to an action, set its value to a list. See https://man.finalrewind.org/1/feh/#x425554544f4e53 for default bindings and available commands.
Type: attribute set of null or string or signed integer or list of string or signed integer
Default:
{
}
Example:
{
prev_img =
[
3 "C-3"
]
; zoom_in = 4; zoom_out = "C-4";
}
Declared by:
<home-manager/modules/programs/feh.nix>
|
programs.feh.keybindingsOverride feh's default keybindings. If you want to disable a keybinding set its value to null. If you want to bind multiple keys to an action, set its value to a list. See https://man.finalrewind.org/1/feh/#x4b455953 for default bindings and available commands.
Type: attribute set of null or string or list of string
Default:
{
}
Example:
{
prev_img =
[
"h" "Left"
]
; zoom_in = "plus"; zoom_out = "minus";
}
Declared by:
<home-manager/modules/programs/feh.nix>
|
programs.firefox.enableWhether to enable Firefox.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.enableGnomeExtensionsWhether to enable the GNOME Shell native host connector. Note, you
also need to set the NixOS option
services.gnome3.chrome-gnome-shell.enable to
true.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.packageThe Firefox package to use. If state version ≥ 19.09 then this should be a wrapped Firefox package. For earlier state versions it should be an unwrapped Firefox package.
Type: package
Default: pkgs.firefox
Example:
pkgs.firefox.override {
# See nixpkgs' firefox/wrapper.nix to check which options you can use
cfg = {
# Gnome shell native connector
enableGnomeExtensions = true;
# Tridactyl native connector
enableTridactylNative = true;
};
}
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.extensionsList of Firefox add-on packages to install. Some pre-packaged add-ons are accessible from NUR, https://github.com/nix-community/NUR. Once you have NUR installed run
$nix-env -f '<nixpkgs>' -qaP -A nur.repos.rycee.firefox-addons
to list the available Firefox add-ons.
Note that it is necessary to manually enable these extensions inside Firefox after the first installation.
Extensions listed here will only be available in Firefox
profiles managed through the
programs.firefox.profiles
option. This is due to recent changes in the way Firefox
handles extension side-loading.
Type: list of package
Default:
[
]
Example:
with pkgs.nur.repos.rycee.firefox-addons; [ https-everywhere privacy-badger ]
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profilesAttribute set of Firefox profiles.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.bookmarksPreloaded bookmarks. Note, this may silently overwrite any previously existing bookmarks!
Type: list of bookmark submodule or directory submodule or attribute set of bookmark submodule or directory submodule convertible to it
Default:
[
]
Example:
[
{
name = "wikipedia";
keyword = "wiki";
url = "https://en.wikipedia.org/wiki/Special:Search?search=%s&go=Go";
}
{
name = "kernel.org";
url = "https://www.kernel.org";
}
{
name = "Nix sites";
bookmarks = [
{
name = "homepage";
url = "https://nixos.org/";
}
{
name = "wiki";
url = "https://nixos.wiki/";
}
];
}
]
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.extraConfigExtra preferences to add to user.js.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.idProfile ID. This should be set to a unique number per profile.
Type: unsigned integer, meaning >=0
Default: 0
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.isDefaultWhether this is a default profile.
Type: boolean
Default: "true if profile ID is 0"
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.nameProfile name.
Type: string
Default: "‹name›"
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.pathProfile path.
Type: string
Default: "‹name›"
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.settingsAttribute set of Firefox preferences.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
"browser.startup.homepage" = "https://nixos.org";
"browser.search.region" = "GB";
"browser.search.isUS" = false;
"distribution.searchplugins.defaultLocale" = "en-GB";
"general.useragent.locale" = "en-GB";
"browser.bookmarks.showMobileBookmarks" = true;
}
Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.userChromeCustom Firefox user chrome CSS.
Type: strings concatenated with "\n"
Default: ""
Example:
''
/* Hide tab bar in FF Quantum */
@-moz-document url("chrome://browser/content/browser.xul") {
#TabsToolbar {
visibility: collapse !important;
margin-bottom: 21px !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
visibility: collapse !important;
}
}
''Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.firefox.profiles.<name>.userContentCustom Firefox user content CSS.
Type: strings concatenated with "\n"
Default: ""
Example:
''
/* Hide scrollbar in FF Quantum */
*{scrollbar-width:none !important}
''Declared by:
<home-manager/modules/programs/firefox.nix>
|
programs.fish.enableWhether to enable fish, the friendly interactive shell.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.packageThe fish package to install. May be used to change the version.
Type: package
Default: pkgs.fish
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.functionsBasic functions to add to fish. For more information see https://fishshell.com/docs/current/cmds/function.html.
Type: attribute set of strings concatenated with "\n" or submodule
Default:
{
}
Example:
{
__fish_command_not_found_handler = {
body = "__fish_default_command_not_found_handler $argv[1]";
onEvent = "fish_command_not_found";
};
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
}
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.interactiveShellInitShell script code called during interactive fish shell initialisation.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.loginShellInitShell script code called during fish login shell initialisation.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.pluginsThe plugins to source in
conf.d/99plugins.fish.
Type: list of submodule
Default:
[
]
Example:
[
{
name = "z";
src = pkgs.fetchFromGitHub {
owner = "jethrokuan";
repo = "z";
rev = "ddeb28a7b6a1f0ec6dae40c636e5ca4908ad160a";
sha256 = "0c5i7sdrsp0q3vbziqzdyqn4fmp235ax4mn4zslrswvn8g3fvdyh";
};
}
# oh-my-fish plugins are stored in their own repositories, which
# makes them simple to import into home-manager.
{
name = "fasd";
src = pkgs.fetchFromGitHub {
owner = "oh-my-fish";
repo = "plugin-fasd";
rev = "38a5b6b6011106092009549e52249c6d6f501fba";
sha256 = "06v37hqy5yrv5a6ssd1p3cjd9y3hnp19d3ab7dag56fs1qmgyhbs";
};
}
]
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.plugins.*.nameThe name of the plugin.
Type: string
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.plugins.*.srcPath to the plugin folder.
Relevant pieces will be added to the fish function path and
the completion path. The init.fish and
key_binding.fish files are sourced if
they exist.
Type: path
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.shellAbbrsAn attribute set that maps aliases (the top level attribute names in this option) to abbreviations. Abbreviations are expanded with the longer phrase after they are entered.
Type: attribute set of string
Default:
{
}
Example:
{
gco = "git checkout"; l = "less";
}
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.shellAliasesAn attribute set that maps aliases (the top level attribute names in this option) to command strings or directly to build outputs.
Type: attribute set of string
Default:
{
}
Example:
{
g = "git";
"..." = "cd ../..";
}
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.fish.shellInitShell script code called during fish shell initialisation.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/fish.nix>
|
programs.foot.enableWhether to enable Foot terminal.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/foot.nix>
|
programs.foot.packageThe foot package to install
Type: package
Default: pkgs.foot
Declared by:
<home-manager/modules/programs/foot.nix>
|
programs.foot.server.enableWhether to enable Foot terminal server.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/foot.nix>
|
programs.foot.settingsConfiguration written to
$XDG_CONFIG_HOME/foot/foot.ini. See https://codeberg.org/dnkl/foot/src/branch/master/foot.ini
for a list of available options.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
main = {
term = "xterm-256color";
font = "Fira Code:size=11";
dpi-aware = "yes";
};
mouse = {
hide-when-typing = "yes";
};
}
Declared by:
<home-manager/modules/programs/foot.nix>
|
programs.fzf.enableWhether to enable fzf - a command-line fuzzy finder.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.packagePackage providing the fzf tool.
Type: package
Default: pkgs.fzf
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.changeDirWidgetCommandThe command that gets executed as the source for fzf for the ALT-C keybinding.
Type: null or string
Default: null
Example: "fd --type d"
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.changeDirWidgetOptionsCommand line options for the ALT-C keybinding.
Type: list of string
Default:
[
]
Example:
[
"--preview 'tree -C {} | head -200'"
]
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.defaultCommandThe command that gets executed as the default source for fzf when running.
Type: null or string
Default: null
Example: "fd --type f"
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.defaultOptionsExtra command line options given to fzf by default.
Type: list of string
Default:
[
]
Example:
[
"--height 40%" "--border"
]
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.fileWidgetCommandThe command that gets executed as the source for fzf for the CTRL-T keybinding.
Type: null or string
Default: null
Example: "fd --type f"
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.fileWidgetOptionsCommand line options for the CTRL-T keybinding.
Type: list of string
Default:
[
]
Example:
[
"--preview 'head {}'"
]
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.historyWidgetOptionsCommand line options for the CTRL-R keybinding.
Type: list of string
Default:
[
]
Example:
[
"--sort" "--exact"
]
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.tmux.enableShellIntegrationWhether to enable setting FZF_TMUX=1 which causes shell integration to use fzf-tmux
.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.fzf.tmux.shellIntegrationOptionsIf programs.fzf.tmux.enableShellIntegration is set to true,
shell integration will use these options for fzf-tmux.
See fzf-tmux --help for available options.
Type: list of string
Default:
[
]
Example: [ "-d 40%" ]
Declared by:
<home-manager/modules/programs/fzf.nix>
|
programs.gh.enableWhether to enable GitHub CLI tool.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.enableGitCredentialHelperWhether to enable the gh git credential helper for github.com.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.packagePackage providing gh.
Type: package
Default: pkgs.gh
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.extensionsgh extensions, see https://cli.github.com/manual/gh_extension.
Type: list of package
Default:
[
]
Example: [ pkgs.gh-eco ]
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.settingsConfiguration written to $XDG_CONFIG_HOME/gh/config.yml.
Type: YAML value
Default:
{
}
Example:
{
git_protocol = "ssh";
prompt = "enabled";
aliases = {
co = "pr checkout";
pv = "pr view";
};
};
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.settings.aliasesAliases that allow you to create nicknames for gh commands.
Type: attribute set of string
Default:
{
}
Example:
{
co = "pr checkout";
pv = "pr view";
}
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.settings.editorThe editor that gh should run when creating issues, pull requests, etc. If blank, will refer to environment.
Type: string
Default: ""
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.gh.settings.git_protocolThe protocol to use when performing Git operations.
Type: string
Default: "https"
Example: "ssh"
Declared by:
<home-manager/modules/programs/gh.nix>
|
programs.git.enableWhether to enable Git.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.packageGit package to install. Use pkgs.gitAndTools.gitFull
to gain access to git send-email for instance.
Type: package
Default: pkgs.git
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.aliasesGit aliases to define.
Type: attribute set of string
Default:
{
}
Example:
{
co = "checkout";
}
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.attributesList of defining attributes set globally.
Type: list of string
Default:
[
]
Example:
[
"*.pdf diff=pdf"
]
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.delta.enableWhether to enable the delta syntax highlighter. See https://github.com/dandavison/delta.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.delta.optionsOptions to configure delta.
Type: attribute set of string or boolean or signed integer or attribute set of string or boolean or signed integer
Default:
{
}
Example:
{
decorations =
{
commit-decoration-style = "bold yellow box ul"; file-decoration-style = "none"; file-style = "bold yellow ul";
}
; features = "decorations"; whitespace-error-style = "22 reverse";
}
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.enableEnable the diff-so-fancy diff colorizer. See https://github.com/so-fancy/diff-so-fancy.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.changeHunkIndicatorsSimplify git header chunks to a more human readable format.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.markEmptyLinesWhether the first block of an empty line should be colored.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.rulerWidthBy default, the separator for the file header spans the full width of the terminal. Use this setting to set the width of the file header manually.
Type: null or signed integer
Default: null
Example: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.stripLeadingSymbolsWhether the + or - at
line-start should be removed.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.diff-so-fancy.useUnicodeRulerBy default, the separator for the file header uses Unicode line-drawing characters. If this is causing output errors on your terminal, set this to false to use ASCII characters instead.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.difftastic.enableEnable the difft syntax highlighter. See https://github.com/Wilfred/difftastic.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.difftastic.backgroundDetermines whether difftastic should use the lighter or darker colors for syntax highlithing.
Type: one of "light", "dark"
Default: "light"
Example: "dark"
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.difftastic.colorDetermines when difftastic should color its output.
Type: one of "always", "auto", "never"
Default: "auto"
Example: "always"
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.difftastic.displayDetermines how the output displays - in one column or two columns.
Type: one of "side-by-side", "side-by-side-show-both", "inline"
Default: "side-by-side"
Example: "inline"
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.extraConfigAdditional configuration to add. The use of string values is deprecated and will be removed in the future.
Type: strings concatenated with "\n" or attribute set of attribute set of string or boolean or signed integer or list of string or boolean or signed integer or attribute set of string or boolean or signed integer or list of string or boolean or signed integer
Default:
{
}
Example:
{
core =
{
whitespace = "trailing-space,space-before-tab";
}
; url =
{
ssh://git@host =
{
insteadOf = "otherhost";
}
;
}
;
}
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.hooksConfiguration helper for Git hooks. See https://git-scm.com/docs/githooks for reference.
Type: attribute set of path
Default:
{
}
Example:
{
pre-commit = ./pre-commit-script;
}
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.ignoresList of paths that should be globally ignored.
Type: list of string
Default:
[
]
Example:
[
"*~" "*.swp"
]
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.includesList of configuration files to include.
Type: list of submodule
Default:
[
]
Example:
[
{ path = "~/path/to/config.inc"; }
{
path = "~/path/to/conditional.inc";
condition = "gitdir:~/src/dir";
}
]
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.includes.*.conditionInclude this configuration only when condition
matches. Allowed conditions are described in
git-config(1).
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.includes.*.contentSuffixNix store name for the git configuration text file, when generating the configuration text from nix options.
Type: string
Default: "gitconfig"
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.includes.*.contentsConfiguration to include. If empty then a path must be given. This follows the configuration structure as described in git-config(1).
Type: attribute set of anything
Default:
{
}
Example:
{
user = {
email = "bob@work.example.com";
name = "Bob Work";
signingKey = "1A2B3C4D5E6F7G8H";
};
commit = {
gpgSign = true;
};
};
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.includes.*.pathPath of the configuration file to include.
Type: string or path
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.lfs.enableWhether to enable Git Large File Storage.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.lfs.skipSmudgeSkip automatic downloading of objects on clone or pull. This requires a manual git lfs pull every time a new commit is checked out on your repository.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.signingOptions related to signing commits using GnuPG.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.signing.gpgPathPath to GnuPG binary to use.
Type: string
Default: "\${pkgs.gnupg}/bin/gpg2"
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.signing.keyThe default GPG signing key fingerprint.
Set to null to let GnuPG decide what signing key
to use depending on commit’s author.
Type: null or string
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.signing.signByDefaultWhether commits and tags should be signed by default.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.userEmailDefault user email to use.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.git.userNameDefault user name to use.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/git.nix>
|
programs.gitui.enableWhether to enable gitui, blazing fast terminal-ui for git written in rust.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/gitui.nix>
|
programs.gitui.packageThe package to use.
Type: package
Default: "pkgs.gitui"
Declared by:
<home-manager/modules/programs/gitui.nix>
|
programs.gitui.keyConfigKey config in Ron file format. This is written to
$XDG_CONFIG_HOME/gitui/key_config.ron.
Type: path or strings concatenated with "\n"
Default: ""
Example:
''
exit: Some(( code: Char('c'), modifiers: ( bits: 2,),)),
quit: Some(( code: Char('q'), modifiers: ( bits: 0,),)),
exit_popup: Some(( code: Esc, modifiers: ( bits: 0,),)),
''Declared by:
<home-manager/modules/programs/gitui.nix>
|
programs.gitui.themeTheme in Ron file format. This is written to
$XDG_CONFIG_HOME/gitui/theme.ron.
Type: path or strings concatenated with "\n"
Default:
'' ( selected_tab: Reset, command_fg: White, selection_bg: Blue, cmdbar_extra_lines_bg: Blue, disabled_fg: DarkGray, diff_line_add: Green, diff_line_delete: Red, diff_file_added: LightGreen, diff_file_removed: LightRed, diff_file_moved: LightMagenta, diff_file_modified: Yellow, commit_hash: Magenta, commit_time: LightCyan, commit_author: Green, danger_fg: Red, push_gauge_bg: Blue, push_gauge_fg: Reset, ) ''
Declared by:
<home-manager/modules/programs/gitui.nix>
|
programs.gnome-terminal.enableWhether to enable Gnome Terminal.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profileA set of Gnome Terminal profiles.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.allowBoldIf true, allow applications in the
terminal to make text boldface.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.audibleBellTurn on/off the terminal's bell.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.backspaceBindingWhich string the terminal should send to an application when the user presses the Backspace key.
autoAttempt to determine the right value from the terminal's IO settings.
ascii-backspaceSend an ASCII backspace character (0x08).
ascii-deleteSend an ASCII delete character (0x7F).
delete-sequenceSend the “@7” control sequence.
ttySend terminal’s “erase” setting.
Type: one of "auto", "ascii-backspace", "ascii-delete", "delete-sequence", "tty"
Default: "ascii-delete"
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.boldIsBrightWhether bold text is shown in bright colors.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colorsThe terminal colors, null to use system default.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.backgroundColorThe background color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.boldColorThe bold color, null to use same as foreground.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.cursorThe color for the terminal cursor.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.cursor.backgroundThe background color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.cursor.foregroundThe foreground color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.foregroundColorThe foreground color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.highlightThe colors for the terminal’s highlighted area.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.highlight.backgroundThe background color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.highlight.foregroundThe foreground color.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.colors.paletteThe terminal palette.
Type: list of string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.cursorBlinkModeThe cursor blink mode.
Type: one of "system", "on", "off"
Default: "system"
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.cursorShapeThe cursor shape.
Type: one of "block", "ibeam", "underline"
Default: "block"
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.customCommandThe command to use to start the shell, or null for default shell.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.defaultWhether this should be the default profile.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.deleteBindingWhich string the terminal should send to an application when the user presses the Delete key.
autoSend the “@7” control sequence.
ascii-backspaceSend an ASCII backspace character (0x08).
ascii-deleteSend an ASCII delete character (0x7F).
delete-sequenceSend the “@7” control sequence.
ttySend terminal’s “erase” setting.
Type: one of "auto", "ascii-backspace", "ascii-delete", "delete-sequence", "tty"
Default: "delete-sequence"
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.fontThe font name, null to use system default.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.loginShellRun command as a login shell.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.scrollOnOutputWhether to scroll when output is written.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.scrollbackLinesThe number of scrollback lines to keep, null for infinite.
Type: null or signed integer
Default: 10000
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.showScrollbarWhether the scroll bar should be visible.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.transparencyPercentBackground transparency in percent.
Type: null or integer between 0 and 100 (both inclusive)
Default: null
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.profile.<name>.visibleNameThe profile name.
Type: string
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.showMenubarWhether to show the menubar by default
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.gnome-terminal.themeVariantThe theme variation to request
Type: one of "default", "light", "dark", "system"
Default: "default"
Declared by:
<home-manager/modules/programs/gnome-terminal.nix>
|
programs.go.enableWhether to enable Go.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.packageThe Go package to use.
Type: package
Default: pkgs.go
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.packagesPackages to add to GOPATH.
Type: attribute set of path
Default:
{
}
Example:
{
"golang.org/x/text" = builtins.fetchGit "https://go.googlesource.com/text";
"golang.org/x/time" = builtins.fetchGit "https://go.googlesource.com/time";
}
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.extraGoPathsExtra GOPATHs relative to HOME appended
after programs.go.goPath, if that option is set.
Type: list of string
Default:
[
]
Example:
[
"extraGoPath1" "extraGoPath2"
]
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.goBinGOBIN relative to HOME
Type: null or string
Default: null
Example: ".local/bin.go"
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.goPathPrimary GOPATH relative to
HOME. It will be exported first and therefore
used by default by the Go tooling.
Type: null or string
Default: null
Example: "go"
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.go.goPrivateThe GOPRIVATE environment variable controls
which modules the go command considers to be private (not
available publicly) and should therefore not use the proxy
or checksum database.
Type: list of string
Default:
[
]
Example:
[
"*.corp.example.com" "rsc.io/private"
]
Declared by:
<home-manager/modules/programs/go.nix>
|
programs.gpg.enableWhether to enable GnuPG.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.packageThe Gnupg package to use (also used the gpg-agent service).
Type: package
Default: pkgs.gnupg
Example: pkgs.gnupg23
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.homedirDirectory to store keychains and configuration.
Type: path
Default: "${config.home.homeDirectory}/.gnupg"
Example: "${config.xdg.dataHome}/gnupg"
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.mutableKeysIf set to true, you may manage your keyring as a user
using the gpg command. Upon activation, the keyring
will have managed keys added without overwriting unmanaged keys.
If set to false, the path
$GNUPGHOME/pubring.kbx will become an immutable
link to the Nix store, denying modifications.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.mutableTrustIf set to true, you may manage trust as a user using
the gpg command. Upon activation, trusted keys have
their trust set without overwriting unmanaged keys.
If set to false, the path
$GNUPGHOME/trustdb.gpg will be
overwritten on each activation, removing trust for
any unmanaged keys. Be careful to make a backup of your old
trustdb.gpg before switching to immutable trust!
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.publicKeysA list of public keys to be imported into GnuPG. Note, these key files will be copied into the world-readable Nix store.
Type: list of submodule
Default:
[
]
Example:
[ { source = ./pubkeys.txt; } ]
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.publicKeys.*.sourcePath of an OpenPGP public key file.
Type: path
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.publicKeys.*.textText of an OpenPGP public key.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.publicKeys.*.trustThe amount of trust you have in the key ownership and the care the owner puts into signing other keys. The available levels are
unknown or 1I don't know or won't say.
never or 2I do NOT trust.
marginal or 3I trust marginally.
full or 4I trust fully.
ultimate or 5I trust ultimately.
See https://www.gnupg.org/gph/en/manual/x334.html for more.
Type: null or one of "unknown", 1, "never", 2, "marginal", 3, "full", 4, "ultimate", 5
Default: null
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.scdaemonSettingsSCdaemon configuration options. Available options are described in the gpg scdaemon manpage: https://www.gnupg.org/documentation/manuals/gnupg/Scdaemon-Options.html.
Type: attribute set of string or boolean or list of string
Example:
{
disable-ccid = true;
}
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.gpg.settingsGnuPG configuration options. Available options are described in the gpg manpage: https://gnupg.org/documentation/manpage.html.
Note that lists are converted to duplicate keys.
Type: attribute set of string or boolean or list of string
Example:
{
no-comments = false;
s2k-cipher-algo = "AES128";
}
Declared by:
<home-manager/modules/programs/gpg.nix>
|
programs.helix.enableWhether to enable helix text editor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/helix.nix>
|
programs.helix.packageThe package to use for helix.
Type: package
Default: pkgs.helix
Declared by:
<home-manager/modules/programs/helix.nix>
|
programs.helix.languagesLanguage specific configuration at
$XDG_CONFIG_HOME/helix/languages.toml.
See https://docs.helix-editor.com/languages.html for more information.
Type: list of TOML value
Default:
[
]
Example:
[
{
auto-format = false; name = "rust";
}
]
Declared by:
<home-manager/modules/programs/helix.nix>
|
programs.helix.settingsConfiguration written to
$XDG_CONFIG_HOME/helix/config.toml.
See https://docs.helix-editor.com/configuration.html for the full list of options.
Type: TOML value
Default:
{
}
Example:
{
theme = "base16";
lsp.display-messages = true;
keys.normal = {
space.space = "file_picker";
space.w = ":w";
space.q = ":q";
};
}
Declared by:
<home-manager/modules/programs/helix.nix>
|
programs.helix.themesEach theme is written to
$XDG_CONFIG_HOME/helix/themes/theme-name.toml.
Where the name of each attribute is the theme-name (in the example "base16").
See https://docs.helix-editor.com/themes.html for the full list of options.
Type: attribute set of TOML value
Default:
{
}
Example:
{
base16 = let
transparent = "none";
gray = "#665c54";
dark-gray = "#3c3836";
white = "#fbf1c7";
black = "#282828";
red = "#fb4934";
green = "#b8bb26";
yellow = "#fabd2f";
orange = "#fe8019";
blue = "#83a598";
magenta = "#d3869b";
cyan = "#8ec07c";
in {
"ui.menu" = transparent;
"ui.menu.selected" = { modifiers = [ "reversed" ]; };
"ui.linenr" = { fg = gray; bg = dark-gray; };
"ui.popup" = { modifiers = [ "reversed" ]; };
"ui.linenr.selected" = { fg = white; bg = black; modifiers = [ "bold" ]; };
"ui.selection" = { fg = black; bg = blue; };
"ui.selection.primary" = { modifiers = [ "reversed" ]; };
"comment" = { fg = gray; };
"ui.statusline" = { fg = white; bg = dark-gray; };
"ui.statusline.inactive" = { fg = dark-gray; bg = white; };
"ui.help" = { fg = dark-gray; bg = white; };
"ui.cursor" = { modifiers = [ "reversed" ]; };
"variable" = red;
"variable.builtin" = orange;
"constant.numeric" = orange;
"constant" = orange;
"attributes" = yellow;
"type" = yellow;
"ui.cursor.match" = { fg = yellow; modifiers = [ "underlined" ]; };
"string" = green;
"variable.other.member" = red;
"constant.character.escape" = cyan;
"function" = blue;
"constructor" = blue;
"special" = blue;
"keyword" = magenta;
"label" = magenta;
"namespace" = blue;
"diff.plus" = green;
"diff.delta" = yellow;
"diff.minus" = red;
"diagnostic" = { modifiers = [ "underlined" ]; };
"ui.gutter" = { bg = black; };
"info" = blue;
"hint" = dark-gray;
"debug" = dark-gray;
"warning" = yellow;
"error" = red;
};
}
Declared by:
<home-manager/modules/programs/helix.nix>
|
programs.hexchat.enableWhether to enable HexChat, a graphical IRC client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channelsConfigures $XDG_CONFIG_HOME/hexchat/servlist.conf.
Type: attribute set of submodule
Default:
{
}
Example:
{
freenode = {
autojoin = [
"#home-manager"
"#linux"
"#nixos"
];
charset = "UTF-8 (Unicode)";
commands = [
"ECHO Buzz Lightyear sent you a message: 'To Infinity... and Beyond!'"
];
loginMethod = sasl;
nickname = "my_nickname";
nickname2 = "my_secondchoice";
options = {
acceptInvalidSSLCertificates = false;
autoconnect = true;
bypassProxy = true;
connectToSelectedServerOnly = true;
useGlobalUserInformation = false;
forceSSL = false;
};
password = "my_password";
realName = "my_realname";
servers = [
"chat.freenode.net"
"irc.freenode.net"
];
userName = "my_username";
};
}Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.autojoinChannels list to autojoin on connecting to server.
Type: list of string
Default:
[
]
Example:
[
"#home-manager" "#linux" "#nix"
]
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.charsetCharacter set.
Type: null or string
Default: null
Example: "UTF-8 (Unicode)"
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.commandsCommands to be executed on connecting to server.
Type: list of string
Default:
[
]
Example: [ "ECHO Greetings fellow Nixer! ]
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.loginMethodThe login method. The allowed options are:
nullDefault
"nickServMsg"NickServ (/MSG NickServ + password)
"nickServ"NickServ (/NICKSERV + password)
"challengeAuth"Challenge Auth (username + password)
"sasl"SASL (username + password)
"serverPassword"Server password (/PASS password)
"saslExternal"SASL EXTERNAL (cert)
"customCommands"Use "commands" field for auth. For example
commands = [ "/msg NickServ IDENTIFY my_password" ]
Type: null or one of "challengeAuth", "customCommands", "nickServ", "nickServMsg", "sasl", "saslExternal", "serverPassword"
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.nicknamePrimary nickname.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.nickname2Secondary nickname.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.optionsChannel options.
Type: null or submodule
Default: null
Example:
{
autoconnect = true; useGlobalUserInformation = true;
}
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.acceptInvalidSSLCertificatesAccept invalid SSL certificates.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.autoconnectAutoconnect to network.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.bypassProxyBypass proxy.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.connectToSelectedServerOnlyConnect to selected server only.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.forceSSLUse SSL for all servers.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.options.useGlobalUserInformationUse global user information.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.passwordPassword to use. Note this password will be readable by all user's in the Nix store.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.realNameReal name. Is used to populate the real name field that appears when
someone uses the WHOIS command on your nick.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.serversIRC Server Address List.
Type: list of string
Default:
[
]
Example:
[
"chat.freenode.net" "irc.freenode.net"
]
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.channels.<name>.userNameUser name. Part of your user@host hostmask that
appears to other on IRC.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.overwriteConfigFilesEnables overwriting HexChat configuration files
(hexchat.conf, servlist.conf).
Any existing HexChat configuration will be lost. Certify to back-up any
previous configuration before enabling this.
Enabling this setting is recommended, because everytime HexChat application is closed it overwrites Nix/Home Manager provided configuration files, causing:
Nix/Home Manager provided configuration to be out of sync with actual active HexChat configuration.
Blocking Nix/Home Manager updates until configuration files are manually removed.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.settingsConfiguration for $XDG_CONFIG_HOME/hexchat/hexchat.conf, see
https://hexchat.readthedocs.io/en/latest/settings.html#list-of-settings
for supported values.
Type: null or attribute set of string
Default: null
Example:
{
irc_nick1 = "mynick";
irc_username = "bob";
irc_realname = "Bart Simpson";
text_font = "Monospace 14";
};
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.themeTheme package for HexChat. Expects a derivation containing decompressed
theme files. Note, .hct files are actually ZIP files,
as seen in example.
Type: null or package
Default: null
Example:
source = pkgs.fetchzip {
url = "https://dl.hexchat.net/themes/Monokai.hct#Monokai.zip";
sha256 = "sha256-WCdgEr8PwKSZvBMs0fN7E2gOjNM0c2DscZGSKSmdID0=";
stripRoot = false;
};
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.himalaya.enableWhether to enable himalaya mail client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/himalaya.nix>
|
programs.himalaya.packagePackage providing the himalaya mail client.
Type: package
Default: pkgs.himalaya
Declared by:
<home-manager/modules/programs/himalaya.nix>
|
programs.himalaya.settingsGlobal himalaya configuration values.
Type: TOML value
Default:
{
}
Example:
{
default-page-size = 50;
}
Declared by:
<home-manager/modules/programs/himalaya.nix>
|
programs.home-manager.enableWhether to enable Home Manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/home-manager.nix>
|
programs.home-manager.pathThe default path to use for Home Manager. If this path does
not exist then
$HOME/.config/nixpkgs/home-manager and
$HOME/.nixpkgs/home-manager will be
attempted.
Type: null or string
Default: null
Example: "$HOME/devel/home-manager"
Declared by:
<home-manager/modules/programs/home-manager.nix>
|
programs.htop.enableWhether to enable htop.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/htop.nix>
|
programs.htop.packagePackage containing the htop program.
Type: package
Default: pkgs.htop
Declared by:
<home-manager/modules/programs/htop.nix>
|
programs.htop.settingsConfiguration options to add to
$XDG_CONFIG_HOME/htop/htoprc.
Type: attribute set
Default:
{
}
Example:
{
color_scheme = 6;
cpu_count_from_one = 0;
delay = 15;
fields = with config.lib.htop.fields; [
PID
USER
PRIORITY
NICE
M_SIZE
M_RESIDENT
M_SHARE
STATE
PERCENT_CPU
PERCENT_MEM
TIME
COMM
];
highlight_base_name = 1;
highlight_megabytes = 1;
highlight_threads = 1;
} // (with config.lib.htop; leftMeters [
(bar "AllCPUs2")
(bar "Memory")
(bar "Swap")
(text "Zram")
]) // (with config.lib.htop; rightMeters [
(text "Tasks")
(text "LoadAverage")
(text "Uptime")
(text "Systemd")
]);
Declared by:
<home-manager/modules/programs/htop.nix>
|
programs.hyfetch.enableWhether to enable hyfetch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/hyfetch.nix>
|
programs.hyfetch.packageThe hyfetch package to use.
Type: package
Default: pkgs.hyfetch
Declared by:
<home-manager/modules/programs/hyfetch.nix>
|
programs.hyfetch.settingsJSON config for HyFetch
Type: JSON value
Default:
{
}
Example:
{
preset = "rainbow";
mode = "rgb";
color_align = {
mode = "horizontal";
};
}
Declared by:
<home-manager/modules/programs/hyfetch.nix>
|
programs.i3status.enableWhether to enable i3status.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.enableDefaultWhether or not to enable the default configuration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.generalConfiguration to add to i3status config
general section.
See
i3status(1)
for options.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
colors = true;
color_good = "#e0e0e0";
color_degraded = "#d7ae00";
color_bad = "#f69d6a";
interval = 1;
}
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.modulesModules to add to i3status config file.
See
i3status(1)
for options.
Type: attribute set of submodule
Default:
{
}
Example:
{
"volume master" = {
position = 1;
settings = {
format = "♪ %volume";
format_muted = "♪ muted (%volume)";
device = "pulse:1";
};
};
"disk /" = {
position = 2;
settings = {
format = "/ %avail";
};
};
}
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.modules.<name>.enableWhether or not to enable this module.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.modules.<name>.positionPosition of this module in i3status order.
Type: signed integer or floating point number
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status.modules.<name>.settingsConfiguration to add to this i3status module. See i3status(1) for options.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
format = "♪ %volume";
format_muted = "♪ muted (%volume)";
device = "pulse:1";
}
Declared by:
<home-manager/modules/programs/i3status.nix>
|
programs.i3status-rust.enableWhether to enable a replacement for i3-status written in Rust.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.packagePackage providing i3status-rust
Type: package
Default: pkgs.i3status-rust
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.barsAttribute set of i3status-rust bars, each with their own configuration.
Each bar name generates a config file suffixed with
the bar's name from the attribute set, like so:
config-.
name.toml
This way, multiple config files can be generated, such as for having a top and a bottom bar.
See i3status-rust(1) for options.
Type: attribute set of submodule
Default:
{
default =
{
blocks =
[
{
alert = ; alias = "/"; block = "disk_space"; info_type = "available"; interval = 60; path = "/"; unit = "GB"; warning = ;
}
{
block = "memory"; display_type = "memory"; format_mem = "{mem_used_percents}"; format_swap = "{swap_used_percents}";
}
{
block = "cpu"; interval = 1;
}
{
block = "load"; format = "{1m}"; interval = 1;
}
{
block = "sound";
}
{
block = "time"; format = "%a %d/%m %R"; interval = 60;
}
]
;
}
;
}
Example:
bottom = {
blocks = [
{
block = "disk_space";
path = "/";
alias = "/";
info_type = "available";
unit = "GB";
interval = 60;
warning = 20.0;
alert = 10.0;
}
{
block = "memory";
display_type = "memory";
format_mem = "{mem_used_percents}";
format_swap = "{swap_used_percents}";
}
{
block = "cpu";
interval = 1;
}
{
block = "load";
interval = 1;
format = "{1m}";
}
{ block = "sound"; }
{
block = "time";
interval = 60;
format = "%a %d/%m %R";
}
];
settings = {
theme = {
name = "solarized-dark";
overrides = {
idle_bg = "#123456";
idle_fg = "#abcdef";
};
};
};
icons = "awesome5";
theme = "gruvbox-dark";
};
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.bars.<name>.blocksConfiguration blocks to add to i3status-rust
config. See
https://github.com/greshake/i3status-rust/blob/master/blocks.md
for block options.
Type: TOML value
Default:
[
{
alert = ; alias = "/"; block = "disk_space"; info_type = "available"; interval = 60; path = "/"; unit = "GB"; warning = ;
}
{
block = "memory"; display_type = "memory"; format_mem = "{mem_used_percents}"; format_swap = "{swap_used_percents}";
}
{
block = "cpu"; interval = 1;
}
{
block = "load"; format = "{1m}"; interval = 1;
}
{
block = "sound";
}
{
block = "time"; format = "%a %d/%m %R"; interval = 60;
}
]
Example:
[
{
block = "disk_space";
path = "/";
alias = "/";
info_type = "available";
unit = "GB";
interval = 60;
warning = 20.0;
alert = 10.0;
}
{
block = "sound";
format = "{output_name} {volume}%";
on_click = "pavucontrol --tab=3";
mappings = {
"alsa_output.pci-0000_00_1f.3.analog-stereo" = "";
"bluez_sink.70_26_05_DA_27_A4.a2dp_sink" = "";
};
}
];
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.bars.<name>.iconsThe icons set to use. See https://github.com/greshake/i3status-rust/blob/master/themes.md for a list of available icon sets.
Type: string
Default: "none"
Example: "awesome5"
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.bars.<name>.settingsAny extra options to add to i3status-rust
config.
Type: TOML value
Default:
{
}
Example:
{
theme = {
name = "solarized-dark";
overrides = {
idle_bg = "#123456";
idle_fg = "#abcdef";
};
};
}
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.i3status-rust.bars.<name>.themeThe theme to use. See https://github.com/greshake/i3status-rust/blob/master/themes.md for a list of available themes.
Type: string
Default: "plain"
Example: "gruvbox-dark"
Declared by:
<home-manager/modules/programs/i3status-rust.nix>
|
programs.info.enableWhether to enable GNU Info.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/info.nix>
|
programs.ion.enableWhether to enable the Ion Shell. Compatible with Redox and Linux.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/ion.nix>
|
programs.ion.packageThe ion package to install. May be used to change the version.
Type: package
Default: pkgs.ion
Declared by:
<home-manager/modules/programs/ion.nix>
|
programs.ion.initExtraIon script which is called during ion initialization.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/ion.nix>
|
programs.ion.shellAliasesAn attribute set that maps aliases (the top level attribute names in this option) to command strings or directly to build outputs.
Type: attribute set of string
Default:
{
}
Example:
{
g = "git";
}
Declared by:
<home-manager/modules/programs/ion.nix>
|
programs.irssi.enableWhether to enable the Irssi chat client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.aliasesAn attribute set that maps aliases to commands.
Type: attribute set of string
Default:
{
}
Example:
{
BYE = "quit"; J = "join";
}
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.extraConfigThese lines are appended to the Irssi configuration.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networksAn attribute set of chat networks.
Type: attribute set of submodule
Default:
{
}
Example:
{
freenode = {
nick = "hmuser";
server = {
address = "chat.freenode.net";
port = 6697;
autoConnect = true;
};
channels = {
nixos.autoJoin = true;
};
};
}
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.autoCommandsList of commands to execute on connect.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.channelsChannels for the given network.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.channels.<name>.autoJoinWhether to join this channel on connect.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.nickNickname in that network.
Type: string
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.addressAddress of the chat server.
Type: string
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.autoConnectWhether Irssi connects to the server on launch.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.portPort of the chat server.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: 6667
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.ssl.enableWhether SSL should be used.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.ssl.certificateFilePath to a file containing the certificate used for client authentication to the server.
Type: null or path
Default: null
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.server.ssl.verifyWhether the SSL certificate should be verified.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.irssi.networks.<name>.typeType of the network.
Type: string
Default: "IRC"
Declared by:
<home-manager/modules/programs/irssi.nix>
|
programs.java.enableInstall the Java development kit and set the JAVA_HOME
variable.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/java.nix>
|
programs.java.packageJava package to install. Typical values are
pkgs.jdk or pkgs.jre.
Type: package
Default: "pkgs.jdk"
Declared by:
<home-manager/modules/programs/java.nix>
|
programs.jq.enableWhether to enable the jq command-line JSON processor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/jq.nix>
|
programs.jq.packagejq package to use.
Type: package
Default: pkgs.jq
Declared by:
<home-manager/modules/programs/jq.nix>
|
programs.jq.colorsThe colors used in colored JSON output.
See https://stedolan.github.io/jq/manual/#Colors.
Type: submodule
Default:
{
arrays = "1;37"; false = "0;37"; null = "1;30"; numbers = "0;37"; objects = "1;37"; strings = "0;32"; true = "0;37";
}
Example:
{
null = "1;30";
false = "0;31";
true = "0;32";
numbers = "0;36";
strings = "0;33";
arrays = "1;35";
objects = "1;37";
}
Declared by:
<home-manager/modules/programs/jq.nix>
|
programs.just.enableWhether to enable just, a handy way to save and run project-specific commands.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/just.nix>
|
programs.just.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/just.nix>
|
programs.just.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/just.nix>
|
programs.just.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/just.nix>
|
programs.just.packagePackage providing the just tool.
Type: package
Default: pkgs.just
Declared by:
<home-manager/modules/programs/just.nix>
|
programs.kakoune.enableWhether to enable the kakoune text editor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.configkakoune configuration options.
Type: null or submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.alignWithTabsUse tabs for the align command.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.autoCompleteModes in which to display possible completions.
The kakoune default is [ "insert" "prompt" ].
Type: null or list of one of "insert", "prompt"
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.autoInfoContexts in which to display automatic information box.
The kakoune default is [ "command" "onkey" ].
Type: null or list of one of "command", "onkey", "normal"
Default: null
Example:
[
"command" "normal"
]
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.autoReloadReload buffers when an external modification is detected.
The kakoune default is "ask".
Type: null or one of "yes", "no", "ask"
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.colorSchemeSet the color scheme. To see available schemes, enter colorscheme at the kakoune prompt.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooksGlobal hooks. For documentation, see https://github.com/mawww/kakoune/blob/master/doc/pages/hooks.asciidoc.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooks.*.commandsCommands to run when the hook is activated.
Type: strings concatenated with "\n"
Default: ""
Example: "set-option window indentwidth 2"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooks.*.groupAdd the hook to the named group.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooks.*.nameThe name of the hook. For a description, see https://github.com/mawww/kakoune/blob/master/doc/pages/hooks.asciidoc#default-hooks.
Type: one of "NormalBegin", "NormalIdle", "NormalEnd", "NormalKey", "InsertBegin", "InsertIdle", "InsertEnd", "InsertKey", "InsertChar", "InsertDelete", "InsertMove", "WinCreate", "WinClose", "WinResize", "WinDisplay", "WinSetOption", "BufSetOption", "BufNewFile", "BufOpenFile", "BufCreate", "BufWritePre", "BufWritePost", "BufReload", "BufClose", "BufOpenFifo", "BufReadFifo", "BufCloseFifo", "RuntimeError", "ModeChange", "PromptIdle", "GlobalSetOption", "KakBegin", "KakEnd", "FocusIn", "FocusOut", "RawKey", "InsertCompletionShow", "InsertCompletionHide", "InsertCompletionSelect", "ModuleLoaded"
Example: "SetOption"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooks.*.onceRemove the hook after running it once.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.hooks.*.optionAdditional option to pass to the hook.
Type: null or string
Default: null
Example: "filetype=latex"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.incrementalSearchExecute a search as it is being typed.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.indentWidthThe width of an indentation in spaces.
The kakoune default is 4.
If 0, a tab will be used instead.
Type: null or unsigned integer, meaning >=0
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.keyMappingsUser-defined key mappings. For documentation, see https://github.com/mawww/kakoune/blob/master/doc/pages/mapping.asciidoc.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.keyMappings.*.docstringOptional documentation text to display in info boxes.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.keyMappings.*.effectThe sequence of keys to be mapped.
Type: string
Example: ":wq<ret>"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.keyMappings.*.keyThe key to be mapped. See https://github.com/mawww/kakoune/blob/master/doc/pages/mapping.asciidoc#mappable-keys for possible values.
Type: string
Example: "<a-x>"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.keyMappings.*.modeThe mode in which the mapping takes effect.
Type: string
Example: "user"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.numberLinesSettings for the number lines highlighter.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.numberLines.enableWhether to enable the number lines highlighter.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.numberLines.highlightCursorHighlight the cursor line with a separate face.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.numberLines.relativeShow line numbers relative to the main cursor line.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.numberLines.separatorString that separates the line number column from the
buffer contents. The kakoune default is
"|".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.scrollOffHow many lines and columns to keep visible around the cursor.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.scrollOff.columnsThe number of columns to keep visible around the cursor.
Type: unsigned integer, meaning >=0
Default: 0
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.scrollOff.linesThe number of lines to keep visible around the cursor.
Type: unsigned integer, meaning >=0
Default: 0
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showMatchingHighlight the matching char of the character under the
selections' cursor using the MatchingChar
face.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespaceSettings for the show whitespaces highlighter.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.enableWhether to enable the show whitespace highlighter.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.lineFeedThe character to display for line feeds.
The kakoune default is "¬".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.nonBreakingSpaceThe character to display for non-breaking spaces.
The kakoune default is "⍽".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.spaceThe character to display for spaces.
The kakoune default is "·".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.tabThe character to display for tabs.
The kakoune default is "→".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.showWhitespace.tabStopThe character to append to tabs to reach the width of a tabstop.
The kakoune default is " ".
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.tabStopThe width of a tab in spaces. The kakoune default is
6.
Type: null or unsigned integer, meaning >=0
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.uiSettings for the ncurses interface.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.enableMouseWhether to enable mouse support.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.assistantThe assistant displayed in info boxes.
Type: one of "clippy", "cat", "dilbert", "none"
Default: "clippy"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.changeColorsChange color palette.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.setTitleChange the title of the terminal emulator.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.shiftFunctionKeysAmount by which shifted function keys are offset. That
is, if the terminal sends F13 for Shift-F1, this
should be 12.
Type: null or unsigned integer, meaning >=0
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.statusLineWhere to display the status line.
Type: one of "top", "bottom"
Default: "bottom"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.useBuiltinKeyParserBypass ncurses key parser and use an internal one.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.wheelDownButtonButton to send for wheel down events.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.ui.wheelUpButtonButton to send for wheel up events.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLinesSettings for the wrap lines highlighter.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLines.enableWhether to enable the wrap lines highlighter.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLines.indentPreserve line indentation when wrapping.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLines.markerPrefix wrapped lines with marker text.
If not null,
the marker text will be displayed in the indentation if possible.
Type: null or string
Default: null
Example: "⏎"
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLines.maxWidthWrap text at maxWidth, even if the window is wider.
Type: null or unsigned integer, meaning >=0
Default: null
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.config.wrapLines.wordWrap at word boundaries instead of codepoint boundaries.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.extraConfigExtra configuration lines to add to
$XDG_CONFIG_HOME/kak/kakrc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.kakoune.pluginsList of kakoune plugins to install. To get a list of supported plugins run: nix-env -f '<nixpkgs>' -qaP -A kakounePlugins.
Type: list of package
Default:
[
]
Example: [ pkgs.kakounePlugins.kak-fzf ]
Declared by:
<home-manager/modules/programs/kakoune.nix>
|
programs.keychain.enableWhether to enable keychain.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.enableXsessionIntegrationWhether to run keychain from your ~/.xsession.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.packageKeychain package to install.
Type: package
Default: pkgs.keychain
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.agentsAgents to add.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.extraFlagsExtra flags to pass to keychain.
Type: list of string
Default:
[
"--quiet"
]
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.inheritTypeInherit type to attempt from agent variables from the environment.
Type: null or one of "local", "any", "local-once", "any-once"
Default: null
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.keychain.keysKeys to add to keychain.
Type: list of string
Default:
[
"id_rsa"
]
Declared by:
<home-manager/modules/programs/keychain.nix>
|
programs.kitty.enableWhether to enable Kitty terminal emulator.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.packageKitty package to install.
Type: package
Default: pkgs.kitty
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.darwinLaunchOptionsCommand-line options to use when launched by Mac OS GUI
Type: null or list of string
Default: null
Example:
[ "--single-instance" "--directory=/tmp/my-dir" "--listen-on=unix:/tmp/my-socket" ]
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.environmentEnvironment variables to set or override.
Type: attribute set of string
Default:
{
}
Example:
{
"LS_COLORS" = "1";
}
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.extraConfigAdditional configuration to add.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.fontThe font to use.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.font.packagePackage providing the font. This package will be installed
to your profile. If null then the font
is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.dejavu_fonts
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.font.nameThe family name of the font within the package.
Type: string
Example: "DejaVu Sans"
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.font.sizeThe size of the font.
Type: null or signed integer
Default: null
Example: "8"
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.keybindingsMapping of keybindings to actions.
Type: attribute set of string
Default:
{
}
Example:
{
"ctrl+c" = "copy_or_interrupt";
"ctrl+f>2" = "set_font_size 20";
}
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.settingsConfiguration written to
$XDG_CONFIG_HOME/kitty/kitty.conf. See
https://sw.kovidgoyal.net/kitty/conf.html
for the documentation.
Type: attribute set of string or boolean or signed integer
Default:
{
}
Example:
{
scrollback_lines = 10000;
enable_audio_bell = false;
update_check_interval = 0;
}
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kitty.themeApply a Kitty color theme. This option takes the friendly name of any theme given by the command kitty +kitten themes. See https://github.com/kovidgoyal/kitty-themes for more details.
Type: null or string
Default: null
Example: "Space Gray Eighties"
Declared by:
<home-manager/modules/programs/kitty.nix>
|
programs.kodi.enableWhether to enable Kodi.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.kodi.packageThe kodi package to use.
Can be used to specify extensions.
Type: package
Default: pkgs.kodi
Example:
{ pkgs.kodi.withPackages (exts: [ exts.pvr-iptvsimple ]) }
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.kodi.addonSettingsAttribute set with the plugin namespace as toplevel key and the plugins settings as lower level key/value pairs.
Kodi will still show the settings of plugins configured via this mechanism in the GUI and they appear to be mutable. This however is not the case and the settings will stay as specified via Home Manager.
Type: null or attribute set of attribute set of string
Default: null
Example:
{ "service.xbmc.versioncheck".versioncheck_enable = "false"; }
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.kodi.datadirDirectory to store configuration and metadata.
Type: path
Default: "${config.home.homeDirectory}/.kodi"
Example: "${config.xdg.dataHome}/kodi"
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.kodi.settingsConfiguration to write to the advancedsettings.xml
file in kodis userdata directory. Settings specified here will be
immutable from inside kodi and be hidden from the GUI settings dialog.
See https://kodi.wiki/view/Advancedsettings.xml as reference for how settings need to be specified.
The innermost attributes must be of type str.
Type: null or attribute sets of strings
Default: null
Example:
{ videolibrary.showemptytvshows = "true"; }
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.kodi.sourcesContents to populate the file sources.xml in kodis
userdata directory.
See https://kodi.wiki/view/Sources.xml as reference for how sources need to be specified.
Kodi will still show the dialogs to modify sources in the GUI and they appear to be mutable. This however is not the case and the sources will stay as specified via Home Manager.
The innermost attributes must be of type str.
Type: null or attribute sets or lists of strings
Default: null
Example:
{
video = {
default = "movies";
source = [
{ name = "videos"; path = "/path/to/videos"; allowsharing = "true"; }
{ name = "movies"; path = "/path/to/movies"; allowsharing = "true"; }
];
};
}
Declared by:
<home-manager/modules/programs/kodi.nix>
|
programs.lazygit.enableWhether to enable lazygit, a simple terminal UI for git commands.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lazygit.nix>
|
programs.lazygit.settingsConfiguration written to
$XDG_CONFIG_HOME/lazygit/config.yml on Linux
or ~/Library/Application Support/lazygit/config.yml on Darwin. See
https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md
for supported values.
Type: YAML value
Default: { }
Example:
{
gui.theme = {
lightTheme = true;
activeBorderColor = [ "blue" "bold" ];
inactiveBorderColor = [ "black" ];
selectedLineBgColor = [ "default" ];
};
}
Declared by:
<home-manager/modules/programs/lazygit.nix>
|
programs.less.enableWhether to enable less, opposite of more.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/less.nix>
|
programs.less.keysExtra configuration for less written to
$XDG_CONFIG_HOME/lesskey.
Type: strings concatenated with "\n"
Default: ""
Example:
'' s back-line t forw-line ''
Declared by:
<home-manager/modules/programs/less.nix>
|
programs.lesspipe.enableWhether to enable lesspipe preprocessor for less.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lesspipe.nix>
|
programs.lf.enableWhether to enable lf.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.packagelf package to use.
Type: package
Default: pkgs.lf
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.cmdKeybindingsKeys to bind to command line commands which can only be one of the builtin commands. Keys set to null or an empty string are deleted.
Type: attribute set of null or string
Default:
{
}
Example: { "<c-g>" = "cmd-escape"; }
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.commandsCommands to declare. Commands set to null or an empty string are deleted.
Type: attribute set of null or string
Default:
{
}
Example:
{
get-mime-type = ''%xdg-mime query filetype "$f"''; open = "$$OPENER $f";
}
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.extraConfigCustom lfrc lines.
Type: strings concatenated with "\n"
Default: ""
Example:
'' $mkdir -p ~/.trash ''
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.keybindingsKeys to bind. Keys set to null or an empty string are deleted.
Type: attribute set of null or string
Default:
{
}
Example:
{
D = "trash"; U = "!du -sh"; gg = null; gh = "cd ~"; i = "$less $f";
}
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.previewer.keybindingKey to bind to the script at previewer.source and
pipe through less. Setting to null will not bind any key.
Type: null or string
Default: null
Example: "i"
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.previewer.sourceScript or executable to use to preview files. Sets lf's
previewer option.
Type: null or path
Default: null
Example:
pkgs.writeShellScript "pv.sh" ''
#!/bin/sh
case "$1" in
*.tar*) tar tf "$1";;
*.zip) unzip -l "$1";;
*.rar) unrar l "$1";;
*.7z) 7z l "$1";;
*.pdf) pdftotext "$1" -;;
*) highlight -O ansi "$1" || cat "$1";;
esac
''
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.lf.settingsAn attribute set of lf settings. The attribute names and corresponding values must be among the following supported options.
anchorfind | boolean |
color256 | boolean |
dircounts | boolean |
dirfirst | boolean |
drawbox | boolean |
errorfmt | string |
filesep | string |
findlen | signed integer |
globsearch | boolean |
hidden | boolean |
icons | boolean |
ifs | string |
ignorecase | boolean |
ignoredia | boolean |
incsearch | boolean |
info | string |
number | boolean |
period | signed integer |
preview | boolean |
promptfmt | string |
ratios | string |
relativenumber | boolean |
reverse | boolean |
scrolloff | signed integer |
shell | string |
shellopts | string |
smartcase | boolean |
smartdia | boolean |
sortby | string |
tabstop | signed integer |
timefmt | string |
wrapscan | boolean |
wrapscroll | boolean |
See the lf documentation for detailed descriptions of these options.
Note, use previewer to set lf's
previewer option, and
extraConfig for any other option not listed above.
All string options are quoted with double quotes.
Type: submodule
Default:
{
}
Example:
{
number = true; ratios = "1:1:2"; tabstop = 4;
}
Declared by:
<home-manager/modules/programs/lf.nix>
|
programs.librewolf.enableWhether to enable Librewolf browser, a privacy enhanced Firefox fork.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/librewolf.nix>
|
programs.librewolf.packageThe LibreWolf package to use.
Type: package
Default: pkgs.librewolf
Declared by:
<home-manager/modules/programs/librewolf.nix>
|
programs.librewolf.settingsAttribute set of LibreWolf settings and overrides. Refer to https://librewolf.net/docs/settings/ for details on supported values.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
"webgl.disabled" = false;
"privacy.resistFingerprinting" = false;
}
Declared by:
<home-manager/modules/programs/librewolf.nix>
|
programs.lieer.enableWhether to enable lieer Gmail synchronization for notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lieer.nix>
|
programs.lieer.packagelieer package to use.
Type: package
Default: "pkgs.gmailieer"
Declared by:
<home-manager/modules/programs/lieer.nix>
|
programs.lsd.enableWhether to enable lsd.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/lsd.nix>
|
programs.lsd.enableAliasesWhether to enable recommended lsd aliases.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/lsd.nix>
|
programs.lsd.settingsConfiguration written to
$XDG_CONFIG_HOME/lsd/config.yaml. See
https://github.com/Peltoche/lsd#config-file-content
for supported values.
Type: YAML value
Default:
{
}
Example:
{
date = "relative"; ignore-globs =
[
".git" ".hg"
]
;
}
Declared by:
<home-manager/modules/programs/lsd.nix>
|
programs.mako.enableWhether to enable Mako, lightweight notification daemon for Wayland .
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.packageThe mako package to use.
Type: package
Default: pkgs.mako
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.actionsApplications may request an action to be associated with activating a notification. Disabling this will cause mako to ignore these requests.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.anchorShow notifications at the specified position on the output. Supported values are top-right, top-center, top-left, bottom-right, bottom-center, bottom-left, and center.
Type: null or one of "top-right", "top-center", "top-left", "bottom-right", "bottom-center", "bottom-left", "center"
Default: "top-right"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.backgroundColorSet popup background color to a specific color, represented in hex color code.
Type: null or string
Default: "#285577FF"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.borderColorSet popup border color to a specific color, represented in hex color code.
Type: null or string
Default: "#4C7899FF"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.borderRadiusSet popup corner radius to the specified number of pixels.
Type: null or signed integer
Default: 0
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.borderSizeSet popup border size to the specified number of pixels.
Type: null or signed integer
Default: 1
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.defaultTimeoutSet the default timeout to timeout in milliseconds. To disable the timeout, set it to zero.
Type: null or signed integer
Default: 0
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.extraConfigAdditional configuration.
Type: strings concatenated with "\n"
Default: ""
Example:
[urgency=low] border-color=#b8bb26
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.fontFont to use, in Pango format.
Type: null or string
Default: "monospace 10"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.formatSet notification format string to format. See FORMAT SPECIFIERS for more information. To change this for grouped notifications, set it within a grouped criteria.
Type: null or string
Default: ''<b>%s</b>\n%b''
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.groupByA comma-separated list of criteria fields that will be compared to other visible notifications to determine if this one should form a group with them. All listed criteria must be exactly equal for two notifications to group.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.heightSet maximum height of notification popups. Notifications whose text takes up less space are shrunk to fit.
Type: null or signed integer
Default: 100
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.iconPathPaths to search for icons when a notification specifies a name instead of a full path. Colon-delimited. This approximates the search algorithm used by the XDG Icon Theme Specification, but does not support any of the theme metadata. Therefore, if you want to search parent themes, you'll need to add them to the path manually.
The /usr/share/icons/hicolor and
/usr/share/pixmaps directories are
always searched.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.iconsWhether or not to show icons in notifications.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.ignoreTimeoutIf set, mako will ignore the expire timeout sent by notifications and use the one provided by default-timeout instead.
Type: null or boolean
Default: false
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.layerArrange mako at the specified layer, relative to normal windows. Supported values are background, bottom, top, and overlay. Using overlay will cause notifications to be displayed above fullscreen windows, though this may also occur at top depending on your compositor.
Type: null or one of "background", "bottom", "top", "overlay"
Default: "top"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.marginSet margin of each edge specified in pixels. Specify single value to apply margin on all sides. Two comma-seperated values will set vertical and horizontal edges seperately. Four comma-seperated will give each edge a seperate value. For example: 10,20,5 will set top margin to 10, left and right to 20 and bottom to five.
Type: null or string
Default: "10"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.markupIf 1, enable Pango markup. If 0, disable Pango markup. If enabled, Pango markup will be interpreted in your format specifier and in the body of notifications.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.maxIconSizeSet maximum icon size to the specified number of pixels.
Type: null or signed integer
Default: 64
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.maxVisibleSet maximum number of visible notifications. Set -1 to show all.
Type: null or signed integer
Default: 5
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.outputShow notifications on the specified output. If empty, notifications will appear on the focused output. Requires the compositor to support the Wayland protocol xdg-output-unstable-v1 version 2.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.paddingSet padding of each edge specified in pixels. Specify single value to apply margin on all sides. Two comma-seperated values will set vertical and horizontal edges seperately. Four comma-seperated will give each edge a seperate value. For example: 10,20,5 will set top margin to 10, left and right to 20 and bottom to five.
Type: null or string
Default: "5"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.progressColorSet popup progress indicator color to a specific color,
represented in hex color code. To draw the progress
indicator on top of the background color, use the
over attribute. To replace the background
color, use the source attribute (this can
be useful when the notification is semi-transparent).
Type: null or string
Default: "over #5588AAFF"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.sortSorts incoming notifications by time and/or priority in ascending(+) or descending(-) order.
Type: null or one of "+time", "-time", "+priority", "-priority"
Default: "-time"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.textColorSet popup text color to a specific color, represented in hex color code.
Type: null or string
Default: "#FFFFFFFF"
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.mako.widthSet width of notification popups in specified number of pixels.
Type: null or signed integer
Default: 300
Declared by:
<home-manager/modules/services/mako.nix>
|
programs.man.enableWhether to enable manual pages and the man
command. This also includes "man" outputs of all
home.packages.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/man.nix>
|
programs.man.packageThe man package to use.
Type: package
Default: pkgs.man
Declared by:
<home-manager/modules/programs/man.nix>
|
programs.man.generateCachesWhether to generate the manual page index caches using mandb(8). This allows searching for a page or keyword using utilities like apropos(1).
This feature is disabled by default because it slows down building. If you don't mind waiting a few more seconds when Home Manager builds a new generation, you may safely enable this option.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/man.nix>
|
programs.mangohud.enableWhether to enable Mangohud.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mangohud.nix>
|
programs.mangohud.enableSessionWideSets environment variables so that MangoHud is started on any application that supports it.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/mangohud.nix>
|
programs.mangohud.packageThe Mangohud package to install.
Type: package
Default: pkgs.mangohud
Declared by:
<home-manager/modules/programs/mangohud.nix>
|
programs.mangohud.settingsConfiguration written to
$XDG_CONFIG_HOME/MangoHud/MangoHud.conf. See
https://github.com/flightlessmango/MangoHud/blob/master/bin/MangoHud.conf
for the default configuration.
Type: attribute set of boolean or signed integer or floating point number or string or path or list of signed integer or string
Default:
{
}
Example:
{
output_folder = ~/Documents/mangohud/;
full = true;
}
Declared by:
<home-manager/modules/programs/mangohud.nix>
|
programs.mangohud.settingsPerApplicationSets MangoHud settings per application.
Configuration written to
$XDG_CONFIG_HOME/MangoHud/{application_name}.conf. See
https://github.com/flightlessmango/MangoHud/blob/master/bin/MangoHud.conf
for the default configuration.
Type: attribute set of attribute set of boolean or signed integer or floating point number or string or path or list of signed integer or string
Default:
{
}
Example:
{
mpv = {
no_display = true;
}
}
Declared by:
<home-manager/modules/programs/mangohud.nix>
|
programs.matplotlib.enableWhether to enable matplotlib, a plotting library for python.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/matplotlib.nix>
|
programs.matplotlib.configAdd terms to the matplotlibrc file to
control the default matplotlib behavior.
Type: attribute set of anything
Default:
{
}
Example:
{
backend = "Qt5Agg";
axes = {
grid = true;
facecolor = "black";
edgecolor = "FF9900";
};
grid.color = "FF9900";
}
Declared by:
<home-manager/modules/programs/matplotlib.nix>
|
programs.matplotlib.extraConfigAdditional commands for matplotlib that will be added to the
matplotlibrc file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/matplotlib.nix>
|
programs.mbsync.enableWhether to enable mbsync IMAP4 and Maildir mailbox synchronizer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
programs.mbsync.packageThe package to use for the mbsync binary.
Type: package
Default: pkgs.isync
Example: pkgs.isync
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
programs.mbsync.extraConfigExtra configuration lines to add to the mbsync configuration.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
programs.mbsync.groupsDefinition of groups.
Type: attribute set of attribute set of list of string
Default:
{
}
Example:
{
inboxes = {
account1 = [ "Inbox" ];
account2 = [ "Inbox" ];
};
}
Declared by:
<home-manager/modules/programs/mbsync.nix>
|
programs.mcfly.enableWhether to enable mcfly.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.enableLightThemeWhether to enable light mode theme.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.fuzzySearchFactorWhether to enable fuzzy searching. 0 is off; higher numbers weight toward shorter matches. Values in the 2-5 range get good results so far.
Type: unsigned integer, meaning >=0
Default: 0
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mcfly.keySchemeKey scheme to use.
Type: one of "emacs", "vim"
Default: "emacs"
Declared by:
<home-manager/modules/programs/mcfly.nix>
|
programs.mercurial.enableWhether to enable Mercurial.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.packageMercurial package to install.
Type: package
Default: pkgs.mercurial
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.aliasesMercurial aliases to define.
Type: attribute set of anything
Default:
{
}
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.extraConfigAdditional configuration to add.
Type: attribute set of anything or strings concatenated with "\n"
Default:
{
}
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.ignoresList of globs for files to be globally ignored.
Type: list of string
Default:
[
]
Example:
[
"*~" "*.swp"
]
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.ignoresRegexpList of regular expressions for files to be globally ignored.
Type: list of string
Default:
[
]
Example:
[
"^.*~$" ''^.*\.swp$''
]
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.userEmailDefault user email to use.
Type: string
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.mercurial.userNameDefault user name to use.
Type: string
Declared by:
<home-manager/modules/programs/mercurial.nix>
|
programs.micro.enableWhether to enable micro, a terminal-based text editor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/micro.nix>
|
programs.micro.settingsConfiguration written to
$XDG_CONFIG_HOME/micro/settings.json. See
https://github.com/zyedidia/micro/blob/master/runtime/help/options.md
for supported values.
Type: JSON value
Default:
{
}
Example:
{
autosu = false;
cursorline = false;
}
Declared by:
<home-manager/modules/programs/micro.nix>
|
programs.mpv.enableWhether to enable mpv.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.packagePackage providing mpv.
Type: package
Default: (build of mpv-with-scripts-0.34.1)
Example: pkgs.wrapMpv (pkgs.mpv-unwrapped.override { vapoursynthSupport = true; }) { youtubeSupport = true; }
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.bindingsInput configuration written to
$XDG_CONFIG_HOME/mpv/input.conf. See
mpv(1)
for the full list of options.
Type: attribute set of string
Default:
{
}
Example:
{
WHEEL_UP = "seek 10";
WHEEL_DOWN = "seek -10";
"Alt+0" = "set window-scale 0.5";
}
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.configConfiguration written to
$XDG_CONFIG_HOME/mpv/mpv.conf. See
mpv(1)
for the full list of options.
Type: attribute set of string or signed integer or boolean or floating point number or list of string or signed integer or boolean or floating point number
Default:
{
}
Example:
{
profile = "gpu-hq";
force-window = true;
ytdl-format = "bestvideo+bestaudio";
cache-default = 4000000;
}
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.defaultProfilesProfiles to be applied by default. Options set by them are overridden
by options set in programs.mpv.config.
Type: list of string
Default:
[
]
Example:
[
"gpu-hq"
]
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.profilesSub-configuration options for specific profiles written to
$XDG_CONFIG_HOME/mpv/mpv.conf. See
programs.mpv.config for more information.
Type: attribute set of attribute set of string or signed integer or boolean or floating point number or list of string or signed integer or boolean or floating point number
Default:
{
}
Example:
{
fast = {
vo = "vdpau";
};
"protocol.dvd" = {
profile-desc = "profile for dvd:// streams";
alang = "en";
};
}
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.mpv.scriptsList of scripts to use with mpv.
Type: list of package
Default:
[
]
Example: [ pkgs.mpvScripts.mpris ]
Declared by:
<home-manager/modules/programs/mpv.nix>
|
programs.msmtp.enableWhether to enable msmtp.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
programs.msmtp.extraAccountsExtra configuration lines to add to the end of ~/.msmtprc.
See https://marlam.de/msmtp/msmtprc.txt for examples.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
programs.msmtp.extraConfigExtra configuration lines to add to ~/.msmtprc.
See https://marlam.de/msmtp/msmtprc.txt for examples.
Note, if running msmtp fails with the error message "account default
was already defined" then you probably have an account command here.
Account commands should be placed in
accounts.email.accounts.<name>.msmtp.extraConfig.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/msmtp.nix>
|
programs.mu.enableWhether to enable mu, a maildir indexer and searcher.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mu.nix>
|
programs.mujmap.enableWhether to enable mujmap Gmail synchronization for notmuch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
programs.mujmap.packagemujmap package to use.
Type: package
Default: "pkgs.mujmap"
Declared by:
<home-manager/modules/programs/mujmap.nix>
|
programs.navi.enableWhether to enable Navi.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.navi.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.navi.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.navi.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.navi.packageThe package to use for the navi binary.
Type: package
Default: pkgs.navi
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.navi.settingsConfiguration written to
$XDG_CONFIG_HOME/navi/config.yaml on Linux or
$HOME/Library/Application Support/navi/config.yaml
on Darwin. See
https://github.com/denisidoro/navi/blob/master/docs/config_file.md
for more information.
Type: YAML value
Default:
{
}
Example:
{
cheats = {
paths = [
"~/cheats/"
];
};
}
Declared by:
<home-manager/modules/programs/navi.nix>
|
programs.ncmpcpp.enableWhether to enable ncmpcpp - an ncurses Music Player Daemon (MPD) client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.packagePackage providing the ncmpcpp command.
Type: package
Default: pkgs.ncmpcpp
Example: pkgs.ncmpcpp.override { visualizerSupport = true; }
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.bindingsList of keybindings.
Type: list of submodule
Default:
[
]
Example:
[
{ key = "j"; command = "scroll_down"; }
{ key = "k"; command = "scroll_up"; }
{ key = "J"; command = [ "select_item" "scroll_down" ]; }
{ key = "K"; command = [ "select_item" "scroll_up" ]; }
]
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.bindings.*.commandCommand or sequence of commands to be executed.
Type: string or list of string
Example: "scroll_down"
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.bindings.*.keyKey to bind.
Type: string
Example: "j"
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.mpdMusicDirValue of the mpd_music_dir setting. On Linux platforms the
value of services.mpd.musicDirectory is used as the
default if services.mpd.enable is
true.
Type: null or path
Default:
if pkgs.stdenv.hostPlatform.isLinux && config.services.mpd.enable then config.services.mpd.musicDirectory else null
Example: "~/music"
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncmpcpp.settingsAttribute set from name of a setting to its value. For available options see ncmpcpp(1).
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
ncmpcpp_directory = "~/.local/share/ncmpcpp";
}
Declared by:
<home-manager/modules/programs/ncmpcpp.nix>
|
programs.ncspot.enableWhether to enable ncspot.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/ncspot.nix>
|
programs.ncspot.packageThe package to use for ncspot.
Type: package
Default: pkgs.ncspot
Declared by:
<home-manager/modules/programs/ncspot.nix>
|
programs.ncspot.settingsConfiguration written to
$XDG_CONFIG_HOME/ncspot/config.toml.
See https://github.com/hrkfdn/ncspot#configuration for the full list of options.
Type: TOML value
Default:
{
}
Example:
{
shuffle = true;
gapless = true;
}
Declared by:
<home-manager/modules/programs/ncspot.nix>
|
programs.ne.enableWhether to enable ne.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.ne.automaticPreferencesAutomatic preferences files for ne.
Type: attribute set of strings concatenated with "\n"
Default:
{
}
Example:
{
nix = ''
TAB 0
TS 2
'';
js = ''
TS 4
'';
}
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.ne.defaultPreferencesDefault preferences for ne.
Equivalent to programs.ne.automaticPreferences.".default".
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.ne.keybindingsKeybinding file for ne.
Type: strings concatenated with "\n"
Default: ""
Example:
'' KEY 7f BS SEQ "\x1b[1;5D" 7f ''
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.ne.menusMenu configuration file for ne.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.ne.virtualExtensionsVirtual extensions configuration file for ne.
Type: strings concatenated with "\n"
Default: ""
Example:
'' sh 1 ^#!\s*/.*\b(bash|sh|ksh|zsh)\s* csh 1 ^#!\s*/.*\b(csh|tcsh)\s* ''
Declared by:
<home-manager/modules/programs/ne.nix>
|
programs.neomutt.enableWhether to enable the NeoMutt mail client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.packageThe neomutt package to use.
Type: package
Default: pkgs.neomutt
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.bindsList of keybindings.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.binds.*.actionSpecify the action to take.
Type: string
Example: "<enter-command>toggle sidebar_visible<enter><refresh>"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.binds.*.keyThe key to bind.
Type: string
Example: "<left>"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.binds.*.mapSelect the menu to bind the command to.
Type: one of "alias", "attach", "browser", "compose", "editor", "generic", "index", "mix", "pager", "pgp", "postpone", "query", "smime" or list of one of "alias", "attach", "browser", "compose", "editor", "generic", "index", "mix", "pager", "pgp", "postpone", "query", "smime"
Default: "index"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.changeFolderWhenSourcingAccountWhether to enable changing the folder when sourcing an account.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.checkStatsIntervalEnable and set the interval of automatic mail check.
Type: null or signed integer
Default: null
Example: 60
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.editorSelect the editor used for writing mail.
Type: string
Default: "$EDITOR"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.extraConfigExtra configuration appended to the end.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.macrosList of macros.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.macros.*.actionSpecify the action to take.
Type: string
Example: "<enter-command>toggle sidebar_visible<enter><refresh>"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.macros.*.keyThe key to bind.
Type: string
Example: "<left>"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.macros.*.mapSelect the menu to bind the command to.
Type: one of "alias", "attach", "browser", "compose", "editor", "generic", "index", "mix", "pager", "pgp", "postpone", "query", "smime" or list of one of "alias", "attach", "browser", "compose", "editor", "generic", "index", "mix", "pager", "pgp", "postpone", "query", "smime"
Default: "index"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.settingsExtra configuration appended to the end.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sidebarOptions related to the sidebar.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sidebar.enableWhether to enable sidebar support.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sidebar.formatSidebar format. Check neomutt documentation for details.
Type: string
Default: "%D%?F? [%F]?%* %?N?%N/?%S"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sidebar.shortPathBy default sidebar shows the full path of the mailbox, but with this enabled only the relative name is shown.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sidebar.widthWidth of the sidebar
Type: signed integer
Default: 22
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.sortSorting method on messages.
Type: one of "date", "date-received", "from", "mailbox-order", "score", "size", "spam", "subject", "threads", "to", "reverse-date", "reverse-date-received", "reverse-from", "reverse-mailbox-order", "reverse-score", "reverse-size", "reverse-spam", "reverse-subject", "reverse-threads", "reverse-to"
Default: "threads"
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neomutt.vimKeysEnable vim-like bindings.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/neomutt.nix>
|
programs.neovim.enableWhether to enable Neovim.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.packageThe package to use for the neovim binary.
Type: package
Default: pkgs.neovim-unwrapped
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.coc.enableWhether to enable Coc.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.coc.packageThe package to use for the CoC plugin.
Type: package
Default: pkgs.vimPlugins.coc-nvim
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.coc.pluginConfigScript to configure CoC. Must be viml.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.coc.settingsExtra configuration lines to add to
$XDG_CONFIG_HOME/nvim/coc-settings.json
See
https://github.com/neoclide/coc.nvim/wiki/Using-the-configuration-file
for options.
Type: JSON value
Default:
{
}
Example:
{
"suggest.noselect" = true;
"suggest.enablePreview" = true;
"suggest.enablePreselect" = false;
"suggest.disableKind" = true;
languageserver = {
haskell = {
command = "haskell-language-server-wrapper";
args = [ "--lsp" ];
rootPatterns = [
"*.cabal"
"stack.yaml"
"cabal.project"
"package.yaml"
"hie.yaml"
];
filetypes = [ "haskell" "lhaskell" ];
};
};
};
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.extraConfigCustom vimrc lines.
Type: strings concatenated with "\n"
Default: ""
Example:
'' set nobackup ''
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.extraLuaPackagesA function in lua5_1.withPackages format, which returns a list of Lua packages required for your plugins to work.
Type: lua5.1 packages in lua5_1.withPackages format or list of package
Default: [ ]
Example: (ps: with ps; [ luautf8 ])
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.extraPackagesExtra packages available to nvim.
Type: list of package
Default:
[
]
Example: [ pkgs.shfmt ]
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.extraPython3PackagesA function in python.withPackages format, which returns a list of Python 3 packages required for your plugins to work.
Type: python3 packages in python.withPackages format or list of package
Default: ps: [ ]
Example: (ps: with ps; [ python-language-server ])
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.generatedConfigVimlGenerated vimscript config.
Type: strings concatenated with "\n" (read only)
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.generatedConfigsGenerated configurations with as key their language (set via type).
Type: attribute set of strings concatenated with "\n" (read only)
Example:
{
viml = ''
" Generated by home-manager
map <leader> ,
'';
lua = ''
-- Generated by home-manager
vim.opt.background = "dark"
'';
}Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.pluginsList of vim plugins to install optionally associated with configuration to be placed in init.vim.
This option is mutually exclusive with configure.
Type: list of package or submodule
Default:
[
]
Example:
with pkgs.vimPlugins; [
yankring
vim-nix
{ plugin = vim-startify;
config = "let g:startify_change_to_vcs_root = 0";
}
]
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.viAliasSymlink vi to nvim binary.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.vimAliasSymlink vim to nvim binary.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.vimdiffAliasAlias vimdiff to nvim -d.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.withNodeJsEnable node provider. Set to true to
use Node plugins.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.withPython3Enable Python 3 provider. Set to true to
use Python 3 plugins.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.neovim.withRubyEnable ruby provider.
Type: null or boolean
Default: true
Declared by:
<home-manager/modules/programs/neovim.nix>
|
programs.newsboat.enableWhether to enable the Newsboat feed reader.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.autoReloadWhether to enable automatic reloading while newsboat is running.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.browserExternal browser to use.
Type: string
Default: "\${pkgs.xdg-utils}/bin/xdg-open"
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.extraConfigExtra configuration values that will be appended to the end.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.maxItemsMaximum number of items per feed, 0 for infinite.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.queriesA list of queries to use.
Type: attribute set of string
Default:
{
}
Example:
{
foo = ''rssurl =~ "example.com"'';
}
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.reloadThreadsHow many threads to use for updating the feeds.
Type: signed integer
Default: 5
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.reloadTimeTime in minutes between reloads.
Type: null or signed integer
Default: 60
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.urlsList of news feeds.
Type: list of submodule
Default:
[
]
Example:
[
{
tags =
[
"foo" "bar"
]
; url = "http://example.com";
}
]
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.urls.*.tagsFeed tags.
Type: list of string
Default:
[
]
Example:
[
"foo" "bar"
]
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.urls.*.titleFeed title.
Type: null or string
Default: null
Example: "ORF News"
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.newsboat.urls.*.urlFeed URL.
Type: string
Example: "http://example.com"
Declared by:
<home-manager/modules/programs/newsboat.nix>
|
programs.nix-index.enableWhether to enable nix-index, a file database for nixpkgs.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/nix-index.nix>
|
programs.nix-index.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/nix-index.nix>
|
programs.nix-index.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/nix-index.nix>
|
programs.nix-index.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/nix-index.nix>
|
programs.nix-index.packagePackage providing the nix-index tool.
Type: package
Default: pkgs.nix-index
Declared by:
<home-manager/modules/programs/nix-index.nix>
|
programs.nnn.enableWhether to enable nnn.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.packagePackage containing the nnn program.
Type: package
Default: pkgs.nnn
Example: pkgs.nnn.override ({ withNerdIcons = true; });
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.bookmarksDirectory bookmarks.
Type: attribute set of string
Default:
{
}
Example:
{
d = "~/Documents";
D = "~/Downloads";
p = "~/Pictures";
v = "~/Videos";
};
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.extraPackagesExtra packages available to nnn.
Type: list of package
Default:
[
]
Example: with pkgs; [ ffmpegthumbnailer mediainfo sxiv ]
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.pluginsManage nnn plugins.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.plugins.mappingsKey mappings to the plugins.
Type: attribute set of string
Default:
{
}
Example:
{
c = "fzcd";
f = "finder";
v = "imgview";
};
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.nnn.plugins.srcPath to the plugin folder.
Type: null or path
Default: null
Example:
(pkgs.fetchFromGitHub {
owner = "jarun";
repo = "nnn";
rev = "v4.0";
sha256 = "sha256-Hpc8YaJeAzJoEi7aJ6DntH2VLkoR6ToP6tPYn3llR7k=";
}) + "/plugins";
Declared by:
<home-manager/modules/programs/nnn.nix>
|
programs.noti.enableWhether to enable Noti.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/noti.nix>
|
programs.noti.settingsConfiguration written to
$XDG_CONFIG_HOME/noti/noti.yaml.
See noti.yaml(5). for the full list of options.
Type: attribute set of attribute set of string
Default:
{
}
Example:
{
say = {
voice = "Alex";
};
slack = {
token = "1234567890abcdefg";
channel = "@jaime";
};
}
Declared by:
<home-manager/modules/programs/noti.nix>
|
programs.notmuch.enableWhether to enable Notmuch mail indexer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.extraConfigOptions that should be appended to the notmuch configuration file.
Type: attribute set of attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.hooks.postInsertBash statements run after a message has been inserted into the database and initial tags have been applied.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.hooks.postNewBash statements run after new messages have been imported into the database and initial tags have been applied.
Type: strings concatenated with "\n"
Default: ""
Example:
'' notmuch tag +nixos -- tag:new and from:nixos1@discoursemail.com ''
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.hooks.preNewBash statements run before scanning or importing new messages into the database.
Type: strings concatenated with "\n"
Default: ""
Example: "mbsync --all"
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.maildir.synchronizeFlagsWhether to synchronize Maildir flags.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.newOptions related to email processing performed by notmuch new.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.new.ignoreA list to specify files and directories that will not be searched for messages by notmuch new.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.new.tagsA list of tags that will be added to all messages incorporated by notmuch new.
Type: list of string
Default:
[
"unread" "inbox"
]
Example:
[
"new"
]
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.notmuch.search.excludeTagsA list of tags that will be excluded from search results by default. Using an excluded tag in a query will override that exclusion.
Type: list of string
Default:
[
"deleted" "spam"
]
Example:
[
"trash" "spam"
]
Declared by:
<home-manager/modules/programs/notmuch.nix>
|
programs.nushell.enableWhether to enable nushell.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.packageThe package to use for nushell.
Type: package
Default: pkgs.nushell
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.configFileThe configuration file to be used for nushell.
See https://www.nushell.sh/book/configuration.html#configuration for more information.
Type: null or submodule
Default: null
Example:
{ text = ''
let $config = {
filesize_metric: false
table_mode: rounded
use_ls_colors: true
}
'';
}
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.configFile.sourcePath of the nushell config.nu file to use.
Type: null or path
Default: file containing text
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.configFile.textText of the nushell config.nu file.
If unset then the source option will be preferred.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.envFileThe environment variables file to be used for nushell.
See https://www.nushell.sh/book/configuration.html#configuration for more information.
Type: null or submodule
Default: null
Example:
'' let-env FOO = 'BAR' ''
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.envFile.sourcePath of the nushell env.nu file to use.
Type: null or path
Default: file containing text
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.nushell.envFile.textText of the nushell env.nu file.
If unset then the source option will be preferred.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/nushell.nix>
|
programs.obs-studio.enableWhether to enable obs-studio.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/obs-studio.nix>
|
programs.obs-studio.packageOBS Studio package to install.
Type: package
Default: pkgs.obs-studio
Declared by:
<home-manager/modules/programs/obs-studio.nix>
|
programs.obs-studio.pluginsOptional OBS plugins.
Type: list of package
Default:
[
]
Example: [ pkgs.obs-studio-plugins.wlrobs ]
Declared by:
<home-manager/modules/programs/obs-studio.nix>
|
programs.octant.enableWhether to enable octant.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/octant.nix>
|
programs.octant.packageThe Octant package to use.
Type: package
Default: pkgs.octant
Example: pkgs.octant-other
Declared by:
<home-manager/modules/programs/octant.nix>
|
programs.octant.pluginsOptional Octant plugins.
Type: list of package
Default:
[
]
Example: [ pkgs.starboard-octant-plugin ]
Declared by:
<home-manager/modules/programs/octant.nix>
|
programs.offlineimap.enableWhether to enable OfflineIMAP.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
programs.offlineimap.extraConfig.defaultExtra configuration options added to the
DEFAULT section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
gmailtrashfolder = "[Gmail]/Papierkorb";
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
programs.offlineimap.extraConfig.generalExtra configuration options added to the
general section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
maxage = 30; ui = "blinkenlights";
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
programs.offlineimap.extraConfig.mbnamesExtra configuration options added to the
mbnames section.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
filename = "~/.config/mutt/mailboxes";
header = "'mailboxes '";
peritem = "'+%(accountname)s/%(foldername)s'";
sep = "' '";
footer = "'\\n'";
}
Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
programs.offlineimap.pythonFilePython code that can then be used in other parts of the configuration.
Type: strings concatenated with "\n"
Default:
''
import subprocess
def get_pass(service, cmd):
return subprocess.check_output(cmd, )
''Declared by:
<home-manager/modules/programs/offlineimap.nix>
|
programs.opam.enableWhether to enable Opam.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/opam.nix>
|
programs.opam.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/opam.nix>
|
programs.opam.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/opam.nix>
|
programs.opam.packageOpam package to install.
Type: package
Default: pkgs.opam
Declared by:
<home-manager/modules/programs/opam.nix>
|
programs.pandoc.enableWhether to enable pandoc.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.packageThe pandoc package to use.
Type: package
Default: pkgs.pandoc
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.citationStylesList of .csl files to install.
Type: list of path
Default:
[
]
Example: [ path/to/file.csl ]
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.defaultsOptions to set by default. These will be converted to JSON and written to a defaults file (see Default files in pandoc documentation).
Type: JSON value
Default:
{
}
Example:
{
metadata = {
author = "John Doe";
};
pdf-engine = "xelatex";
citeproc = true;
}
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.defaultsFileResulting defaults file.
Type: path (read only)
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.finalPackageResulting package.
Type: package (read only)
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.pandoc.templatesCustom templates.
Type: attribute set of path
Default:
{
}
Example:
{
"default.latex" = path/to/your/template;
}
Declared by:
<home-manager/modules/programs/pandoc.nix>
|
programs.password-store.enableWhether to enable Password store.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/password-store.nix>
|
programs.password-store.packageThe pass package to use.
Can be used to specify extensions.
Type: package
Default: pkgs.pass
Example:
pkgs.pass.withExtensions (exts: [ exts.pass-otp ])
Declared by:
<home-manager/modules/programs/password-store.nix>
|
programs.password-store.settingsThe pass environment variables dictionary.
See the "Environment variables" section of pass(1) and the extension man pages for more information about the available keys.
Type: attribute set of string
Default:
{ PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store"; }
Example:
{
PASSWORD_STORE_DIR = "/some/directory";
PASSWORD_STORE_KEY = "12345678";
PASSWORD_STORE_CLIP_TIME = "60";
}
Declared by:
<home-manager/modules/programs/password-store.nix>
|
programs.pazi.enableWhether to enable pazi.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pazi.nix>
|
programs.pazi.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/pazi.nix>
|
programs.pazi.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/pazi.nix>
|
programs.pazi.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/pazi.nix>
|
programs.pet.enableWhether to enable pet.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.selectcmdPackageThe package needed for the settings.selectcmd.
Type: package
Default: pkgs.fzf
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.settingsSettings written to config.toml. See the pet
documentation for details.
Type: TOML value
Default:
{
}
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.snippetsThe snippets.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.snippets.*.commandThe command.
Type: string
Default: ""
Example: "git rev-list --count HEAD"
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.snippets.*.descriptionDescription of the snippet.
Type: string
Default: ""
Example: "Count the number of commits in the current branch"
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.snippets.*.outputExample output of the command.
Type: string
Default: ""
Example: "473"
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pet.snippets.*.tagList of tags attached to the command.
Type: list of string
Default:
[
]
Example: ["git" "nixpkgs"]
Declared by:
<home-manager/modules/programs/pet.nix>
|
programs.pidgin.enableWhether to enable Pidgin messaging client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pidgin.nix>
|
programs.pidgin.packageThe Pidgin package to use.
Type: package
Default: pkgs.pidgin
Declared by:
<home-manager/modules/programs/pidgin.nix>
|
programs.pidgin.pluginsPlugins that should be available to Pidgin.
Type: unspecified
Default:
[
]
Example: [ pkgs.pidgin-otr pkgs.pidgin-osd ]
Declared by:
<home-manager/modules/programs/pidgin.nix>
|
programs.pistol.enableWhether to enable Pistol, a general purpose file previewer designed for terminal file managers.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pistol.nix>
|
programs.pistol.configPistol configuration written to
$XDG_CONFIG_HOME/pistol/pistol.conf.
Type: attribute set of string
Default:
{
}
Example:
{
"text/*" = "bat --paging=never --color=always %pistol-filename%";
"inode/directory" = "ls -l --color %pistol-filename%";
}
Declared by:
<home-manager/modules/programs/pistol.nix>
|
programs.piston-cli.enableWhether to enable piston-cli, code runner.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/piston-cli.nix>
|
programs.piston-cli.packageThe piston-cli package to use.
Type: package
Default: pkgs.piston-cli
Declared by:
<home-manager/modules/programs/piston-cli.nix>
|
programs.piston-cli.settingsConfiguration written to
$XDG_CONFIG_HOME/piston-cli/config.yml.
Type: YAML value
Default:
{
}
Example:
{
theme = "emacs";
box_style = "MINIMAL_DOUBLE_HEAD";
prompt_continuation = "...";
prompt_start = ">>>";
}
Declared by:
<home-manager/modules/programs/piston-cli.nix>
|
programs.powerline-go.enableWhether to enable Powerline-go, a beautiful and useful low-latency prompt for your shell.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.extraUpdatePS1Shell code to execute after the prompt is set.
Type: string
Default: ""
Example:
'' PS1=$PS1"NixOS> "; ''
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.modulesList of module names to load. The list of all available modules as well as the choice of default ones are at https://github.com/justjanne/powerline-go.
Type: null or list of string
Default: null
Example:
[
"host" "ssh" "cwd" "gitlite" "jobs" "exit"
]
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.modulesRightList of module names to load to be displayed on the right side. Currently not supported by bash. Specifying a value for this option will force powerline-go to use the eval format to set the prompt.
Type: null or list of string
Default: null
Example:
[
"host" "venv" "git"
]
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.newlineSet to true if the prompt should be on a line of its own.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.pathAliasesPairs of full-path and corresponding desired short name. You may use '~' to represent your home directory but you should protect it to avoid shell substitution.
Type: null or attribute set of string
Default: null
Example:
{ "\\~/projects/home-manager" = "prj:home-manager"; }
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.powerline-go.settingsThis can be any key/value pair as described in https://github.com/justjanne/powerline-go.
Type: attribute set of boolean or signed integer or string or list of string
Default:
{
}
Example:
{
hostname-only-if-ssh = true;
numeric-exit-codes = true;
cwd-max-depth = 7;
ignore-repos = [ "/home/me/big-project" "/home/me/huge-project" ];
}
Declared by:
<home-manager/modules/programs/powerline-go.nix>
|
programs.pubs.enableWhether to enable pubs.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pubs.nix>
|
programs.pubs.packageThe package to use for the pubs script.
Type: package
Default: pkgs.pubs
Declared by:
<home-manager/modules/programs/pubs.nix>
|
programs.pubs.extraConfigConfiguration using syntax written to
$HOME/.pubsrc.
Type: strings concatenated with "\n"
Default: ""
Example:
''
[main]
pubsdir = ${config.home.homeDirectory}/.pubs
docsdir = ${config.home.homeDirectory}/.pubs/doc
doc_add = link
open_cmd = xdg-open
[plugins]
active = git,alias
[[alias]]
[[[la]]]
command = list -a
description = lists papers in lexicographic order
[[git]]
quiet = True
manual = False
force_color = False
''Declared by:
<home-manager/modules/programs/pubs.nix>
|
programs.pylint.enableWhether to enable the pylint Python linter.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pylint.nix>
|
programs.pylint.packageThe pylint package to use.
Type: package
Default: pkgs.python3Packages.pylint
Declared by:
<home-manager/modules/programs/pylint.nix>
|
programs.pylint.settingsThe pylint configuration.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string) or a non-empty list of them
Default: {}
Declared by:
<home-manager/modules/programs/pylint.nix>
|
programs.pywal.enableWhether to enable pywal.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/pywal.nix>
|
programs.qutebrowser.enableWhether to enable qutebrowser.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.enableDefaultBindingsDisable to prevent loading default key bindings.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.packageQutebrowser package to install.
Type: package
Default: pkgs.qutebrowser
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.aliasesAliases for commands.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.extraConfigExtra lines added to qutebrowser config.py file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.keyBindingsKey bindings mapping keys to commands in different modes. This setting
is a dictionary containing mode names and dictionaries mapping keys to
commands: {mode: {key: command}} If you want to map
a key to another key, check the keyMappings setting
instead. For modifiers, you can use either - or
+ as delimiters, and these names:
Control: Control, Ctrl
Meta: Meta, Windows,
Mod4
Alt: Alt, Mod1
Shift: Shift
For simple keys (no <>-signs), a capital
letter means the key is pressed with Shift. For special keys (with
<>-signs), you need to explicitly add
Shift- to match a key pressed with shift. If you
want a binding to do nothing, bind it to the nop
command. If you want a default binding to be passed through to the
website, bind it to null. Note that some commands which are only useful
for bindings (but not used interactively) are hidden from the command
completion. See :help for a full list of available
commands. The following modes are available:
normalDefault mode, where most commands are invoked.
insert
Entered when an input field is focused on a website, or by
pressing i in normal mode. Passes through almost all keypresses
to the website, but has some bindings like
<Ctrl-e> to open an external editor.
Note that single keys can’t be bound in this mode.
hintEntered when f is pressed to select links with the keyboard. Note that single keys can’t be bound in this mode.
passthrough
Similar to insert mode, but passes through all keypresses except
<Escape> to leave the mode. It might be
useful to bind <Escape> to some other
key in this mode if you want to be able to send an Escape key to
the website as well. Note that single keys can’t be bound in this
mode.
commandEntered when pressing the : key in order to enter a command. Note that single keys can’t be bound in this mode.
promptEntered when there’s a prompt to display, like for download locations or when invoked from JavaScript.
yesnoEntered when there’s a yes/no prompt displayed.
caretEntered when pressing the v mode, used to select text using the keyboard.
register
Entered when qutebrowser is waiting for a register name/key for
commands like :set-mark.
Type: attribute set of attribute set of string
Default:
{
}
Example:
{
normal = {
"<Ctrl-v>" = "spawn mpv {url}";
",p" = "spawn --userscript qute-pass";
",l" = ''config-cycle spellcheck.languages ["en-GB"] ["en-US"]'';
};
prompt = {
"<Ctrl-y>" = "prompt-yes";
};
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.keyMappingsThis setting can be used to map keys to other keys. When the key used
as dictionary-key is pressed, the binding for the key used as
dictionary-value is invoked instead. This is useful for global
remappings of keys, for example to map Ctrl-[ to Escape. Note that when
a key is bound (via bindings.default or
bindings.commands), the mapping is ignored.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.loadAutoconfigLoad settings configured via the GUI.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.quickmarksQuickmarks to add to qutebrowser's quickmarks file.
Note that when Home Manager manages your quickmarks, you cannot edit them at runtime.
Type: attribute set of string
Default:
{
}
Example:
{
nixpkgs = "https://github.com/NixOS/nixpkgs";
home-manager = "https://github.com/nix-community/home-manager";
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.searchEnginesSearch engines that can be used via the address bar. Maps a search
engine name (such as DEFAULT, or
ddg) to a URL with a {}
placeholder. The placeholder will be replaced by the search term, use
{{ and }} for literal
{/} signs. The search engine named
DEFAULT is used when
url.auto_search is turned on and something else than
a URL was entered to be opened. Other search engines can be used by
prepending the search engine name to the search term, for example
:open google qutebrowser.
Type: attribute set of string
Default:
{
}
Example:
{
w = "https://en.wikipedia.org/wiki/Special:Search?search={}&go=Go&ns0=1";
aw = "https://wiki.archlinux.org/?search={}";
nw = "https://nixos.wiki/index.php?search={}";
g = "https://www.google.com/search?hl=en&q={}";
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.qutebrowser.settingsOptions to add to qutebrowser config.py file.
See https://qutebrowser.org/doc/help/settings.html
for options.
Type: attribute set of anything
Default:
{
}
Example:
{
colors = {
hints = {
bg = "#000000";
fg = "#ffffff";
};
tabs.bar.bg = "#000000";
};
tabs.tabs_are_windows = true;
}
Declared by:
<home-manager/modules/programs/qutebrowser.nix>
|
programs.rbw.enableWhether to enable rbw, a CLI Bitwarden client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.packagePackage providing the rbw tool and its rbw-agent daemon.
Type: package
Default: pkgs.rbw
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settingsrbw configuration, if not defined the configuration will not be managed by Home Manager.
Type: null or JSON value
Default: null
Example:
{
email = "name@example.com";
lock_timeout = 300;
pinentry = "gnome3";
}
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settings.base_urlThe base-url for a self-hosted bitwarden installation.
Type: null or string
Default: null
Example: "bitwarden.example.com"
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settings.emailThe email address for your bitwarden account.
Type: string
Example: "name@example.com"
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settings.identity_urlThe identity url for your bitwarden installation.
Type: null or string
Default: null
Example: "identity.example.com"
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settings.lock_timeoutThe amount of time that your login information should be cached.
Type: unsigned integer, meaning >=0
Default: 3600
Example: 300
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.rbw.settings.pinentryWhich pinentry interface to use. Beware that
pinentry-gnome3 may not work on non-Gnome
systems. You can fix it by adding the following to your
system configuration:
services.dbus.packages = [ pkgs.gcr ];
For this reason, the default is gtk2 for
now.
Type: package or one of "curses", "tty", "gtk2", "emacs", "gnome3", "qt"
Default: "gtk2"
Example: "gnome3"
Declared by:
<home-manager/modules/programs/rbw.nix>
|
programs.readline.enableWhether to enable readline.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/readline.nix>
|
programs.readline.bindingsReadline bindings.
Type: attribute set of string
Default:
{
}
Example:
{ "\\C-h" = "backward-kill-word"; }
Declared by:
<home-manager/modules/programs/readline.nix>
|
programs.readline.extraConfigConfiguration lines appended unchanged to the end of the
~/.inputrc file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/readline.nix>
|
programs.readline.includeSystemConfigWhether to include the system-wide configuration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/readline.nix>
|
programs.readline.variablesReadline customization variable assignments.
Type: attribute set of string or signed integer or boolean
Default:
{
}
Example:
{
expand-tilde = true;
}
Declared by:
<home-manager/modules/programs/readline.nix>
|
programs.rofi.enableWhether to enable Rofi: A window switcher, application launcher and dmenu replacement.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.packagePackage providing the rofi binary.
Type: package
Default: (build of rofi-1.7.5)
Example:
pkgs.rofi.override { plugins = [ pkgs.rofi-emoji ]; };
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.configPathPath where to put generated configuration file.
Type: string
Default: "$XDG_CONFIG_HOME/rofi/config.rasi"
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.cycleWhether to cycle through the results list.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.extraConfigAdditional configuration to add.
Type: attribute set of string or signed integer or boolean or Rasi literal string or list of string or signed integer or boolean or Rasi literal string or string
Default:
{
}
Example:
{
modi = "drun,emoji,ssh";
kb-primary-paste = "Control+V,Shift+Insert";
kb-secondary-paste = "Control+v,Insert";
}
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.finalPackageResulting customized rofi package.
Type: package (read only)
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.fontFont to use.
Type: null or string
Default: null
Example: "Droid Sans Mono 14"
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.locationThe location rofi appears on the screen.
Type: one of "bottom", "bottom-left", "bottom-right", "center", "left", "right", "top", "top-left", "top-right"
Default: "center"
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.pass.enableWhether to enable rofi integration with password-store.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/rofi-pass.nix>
|
programs.rofi.pass.extraConfigExtra configuration to be added at to the rofi-pass config file. Additional examples can be found at https://github.com/carnager/rofi-pass/blob/master/config.example.
Type: strings concatenated with "\n"
Default: ""
Example:
'' URL_field='url' USERNAME_field='user' AUTOTYPE_field='autotype' ''
Declared by:
<home-manager/modules/programs/rofi-pass.nix>
|
programs.rofi.pass.storesDirectory roots of your password-stores.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/rofi-pass.nix>
|
programs.rofi.pluginsList of rofi plugins to be installed.
Type: list of package
Default:
[
]
Example: [ pkgs.rofi-calc ]
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.terminalPath to the terminal which will be used to run console applications
Type: null or string
Default: null
Example: "\${pkgs.gnome.gnome_terminal}/bin/gnome-terminal"
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.themeName of theme or path to theme file in rasi format or attribute set with theme configuration. Available named themes can be viewed using the rofi-theme-selector tool.
Type: null or string or path or attribute set of attribute set of string or signed integer or boolean or Rasi literal string or list of string or signed integer or boolean or Rasi literal string or string
Default: null
Example:
let
# Use `mkLiteral` for string-like values that should show without
# quotes, e.g.:
# {
# foo = "abc"; => foo: "abc";
# bar = mkLiteral "abc"; => bar: abc;
# };
inherit (config.lib.formats.rasi) mkLiteral;
in {
"*" = {
background-color = mkLiteral "#000000";
foreground-color = mkLiteral "rgba ( 250, 251, 252, 100 % )";
border-color = mkLiteral "#FFFFFF";
width = 512;
};
"#inputbar" = {
children = map mkLiteral [ "prompt" "entry" ];
};
"#textbox-prompt-colon" = {
expand = false;
str = ":";
margin = mkLiteral "0px 0.3em 0em 0em";
text-color = mkLiteral "@foreground-color";
};
}
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.xoffsetOffset in the x-axis in pixels relative to the chosen location.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rofi.yoffsetOffset in the y-axis in pixels relative to the chosen location.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/programs/rofi.nix>
|
programs.rtorrent.enableWhether to enable rTorrent.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/rtorrent.nix>
|
programs.rtorrent.settingsConfiguration written to
$XDG_CONFIG_HOME/rtorrent/rtorrent.rc. See
https://github.com/rakshasa/rtorrent/wiki/Config-Guide
for explanation about possible values.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/rtorrent.nix>
|
programs.sagemath.enableWhether to enable SageMath, a mathematics software system.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.packageThe SageMath package to use.
Type: package
Default: pkgs.sage
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.configDirDirectory where the sage.init file will be stored.
Note that the upstream default is ~/.sage,
but our default is to follow XDG.
Type: string
Default: ${config.xdg.configHome}/sage
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.dataDirLocation for DOT_SAGE.
Note that the upstream default is ~/.sage,
but our default is to follow XDG.
Type: string
Default: ${config.xdg.dataHome}/sage
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.initScriptContents of the init.sage file that is loaded on startup.
Type: strings concatenated with "\n"
Default: ""
Example: "%colors linux"
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sbt.enableWhether to enable sbt.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.packageThe package with sbt to be installed.
Type: package
Default: pkgs.sbt
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.baseConfigPathWhere the plugins and credentials should be located.
Type: string
Default: ".sbt/1.0"
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.credentialsA list of credentials to define in the sbt configuration directory.
Type: list of submodule
Default:
[
]
Example:
[{
realm = "Sonatype Nexus Repository Manager";
host = "example.com";
user = "user";
passwordCommand = "pass show sbt/user@example.com";
}]
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.credentials.*.hostThe hostname of the repository you're authenticating to.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.credentials.*.passwordCommandThe command that provides the password or authentication token for the repository.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.credentials.*.realmThe realm of the repository you're authenticating to.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.credentials.*.userThe user you're using to authenticate.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.pluginsA list of plugins to place in the sbt configuration directory.
Type: list of submodule
Default:
[
]
Example:
[
{
org = "net.virtual-void";
artifact = "sbt-dependency-graph";
version = "0.10.0-RC1";
}
{
org = "com.dwijnand";
artifact = "sbt-project-graph";
version = "0.4.0";
}
]
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.plugins.*.artifactThe name of the artifact.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.plugins.*.orgThe organization the artifact is published under.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.sbt.plugins.*.versionThe version of the plugin.
Type: string
Declared by:
<home-manager/modules/programs/sbt.nix>
|
programs.scmpuff.enableWhether to enable scmpuff, a command line tool that allows you to work quicker with Git by substituting numeric shortcuts for files.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/scmpuff.nix>
|
programs.scmpuff.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/scmpuff.nix>
|
programs.scmpuff.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/scmpuff.nix>
|
programs.scmpuff.packagePackage providing the scmpuff tool.
Type: package
Default: pkgs.scmpuff
Declared by:
<home-manager/modules/programs/scmpuff.nix>
|
programs.senpai.enableWhether to enable senpai.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.packageThe senpai package to use.
Type: package
Default: pkgs.senpai
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.configConfiguration for senpai. For a complete list of options, see senpai(5).
Type: YAML value
Example:
{
addr = "libera.chat:6697";
nick = "nicholas";
password = "verysecurepassword";
}
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.config.addrThe address (host[:port]) of the IRC server. senpai uses TLS connections by default unless you specify no-tls option. TLS connections default to port 6697, plain-text use port 6667.
Type: string
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.config.nickYour nickname, sent with a NICK IRC message. It mustn't contain spaces or colons (:).
Type: string
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.config.no-tlsDisables TLS encryption.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.senpai.config.passwordYour password, used for SASL authentication. Note that it will reside world-readable in the Nix store.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/senpai.nix>
|
programs.sioyek.enableWhether to enable Sioyek is a PDF viewer designed for reading research papers and technical books..
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sioyek.nix>
|
programs.sioyek.packagePackage providing the sioyek binary
Type: package
Default: pkgs.sioyek
Declared by:
<home-manager/modules/programs/sioyek.nix>
|
programs.sioyek.bindingsInput configuration written to
$XDG_CONFIG_HOME/sioyek/keys_user.config.
See https://github.com/ahrm/sioyek/blob/main/pdf_viewer/keys.config.
Type: attribute set of string
Default:
{
}
Example:
{
"move_up" = "k";
"move_down" = "j";
"move_left" = "h";
"move_right" = "l";
}
Declared by:
<home-manager/modules/programs/sioyek.nix>
|
programs.sioyek.configInput configuration written to
$XDG_CONFIG_HOME/sioyek/prefs_user.config.
See https://github.com/ahrm/sioyek/blob/main/pdf_viewer/prefs.config.
Type: attribute set of string
Default:
{
}
Example:
{
"background_color" = "1.0 1.0 1.0";
"text_highlight_color" = "1.0 0.0 0.0";
}
Declared by:
<home-manager/modules/programs/sioyek.nix>
|
programs.skim.enableWhether to enable skim - a command-line fuzzy finder.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.packagePackage providing the skim tool.
Type: package
Default: pkgs.skim
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.changeDirWidgetCommandThe command that gets executed as the source for skim for the ALT-C keybinding.
Type: null or string
Default: null
Example: "fd --type d"
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.changeDirWidgetOptionsCommand line options for the ALT-C keybinding.
Type: list of string
Default:
[
]
Example:
[
"--preview 'tree -C {} | head -200'"
]
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.defaultCommandThe command that gets executed as the default source for skim when running.
Type: null or string
Default: null
Example: "fd --type f"
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.defaultOptionsExtra command line options given to skim by default.
Type: list of string
Default:
[
]
Example:
[
"--height 40%" "--prompt ⟫"
]
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.fileWidgetCommandThe command that gets executed as the source for skim for the CTRL-T keybinding.
Type: null or string
Default: null
Example: "fd --type f"
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.fileWidgetOptionsCommand line options for the CTRL-T keybinding.
Type: list of string
Default:
[
]
Example:
[
"--preview 'head {}'"
]
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.skim.historyWidgetOptionsCommand line options for the CTRL-R keybinding.
Type: list of string
Default:
[
]
Example:
[
"--tac" "--exact"
]
Declared by:
<home-manager/modules/programs/skim.nix>
|
programs.sm64ex.enableWhether to enable sm64ex.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sm64ex.packageThe sm64ex package to use.
Type: package
Default: (build of sm64ex-0.pre+date=2021-11-30)
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sm64ex.baseromThe path to the Super Mario 64 baserom to extract assets from.
Type: null or path
Default: null
Example: /home/foo/baserom.us.z64
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sm64ex.extraCompileFlagsExtra flags to pass to the compiler. See https://github.com/sm64pc/sm64ex/wiki/Build-options for more information.
Type: null or list of string
Default: null
Example:
[ "BETTERCAMERA=1" "NODRAWINGDISTANCE=1" ];
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sm64ex.regionYour baserom's region. Note that only "us", "eu", and "jp" are supported.
Type: null or one of "us", "eu", "jp"
Default: us
Example: jp
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sm64ex.settingsSettings for sm64ex's $XDG_DATA_HOME/sm64pc/sm64config.txt file.
Type: null or attribute set of string or signed integer or boolean or list of string
Default: null
Example:
{
fullscreen = false;
window_x = 0;
window_y = 0;
window_w = 1920;
window_h = 1080;
vsync = 1;
texture_filtering = 1;
master_volume = 127;
music_volume = 127;
sfx_volume = 127;
env_volume = 127;
key_a = [ "0026" "1000" "1103" ];
key_b = [ "0033" "1002" "1101" ];
key_start = [ "0039" "1006" "ffff" ];
key_l = [ "0034" "1007" "1104" ];
key_r = [ "0036" "100a" "1105" ];
key_z = [ "0025" "1009" "1102" ];
key_cup = [ "100b" "ffff" "ffff" ];
key_cdown = [ "100c" "ffff" "ffff" ];
key_cleft = [ "100d" "ffff" "ffff" ];
key_cright = [ "100e" "ffff" "ffff" ];
key_stickup = [ "0011" "ffff" "ffff" ];
key_stickdown = [ "001f" "ffff" "ffff" ];
key_stickleft = [ "001e" "ffff" "ffff" ];
key_stickright = [ "0020" "ffff" "ffff" ];
stick_deadzone = 16;
rumble_strength = 10;
skip_intro = 1;
};
Declared by:
<home-manager/modules/programs/sm64ex.nix>
|
programs.sqls.enableWhether to enable sqls, a SQL language server written in Go.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sqls.nix>
|
programs.sqls.settingsConfiguration written to
$XDG_CONFIG_HOME/sqls/config.yml. See
https://github.com/lighttiger2505/sqls#db-configuration
for supported values.
Type: YAML value
Default:
{
}
Example:
{
lowercaseKeywords = true;
connections = [
{
driver = "mysql";
dataSourceName = "root:root@tcp(127.0.0.1:13306)/world";
}
];
}
Declared by:
<home-manager/modules/programs/sqls.nix>
|
programs.ssh.enableWhether to enable SSH client configuration.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.compressionSpecifies whether to use compression.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.controlMasterConfigure sharing of multiple sessions over a single network connection.
Type: one of "yes", "no", "ask", "auto", "autoask"
Default: "no"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.controlPathSpecify path to the control socket used for connection sharing.
Type: string
Default: "~/.ssh/master-%r@%n:%p"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.controlPersistWhether control socket should remain open in the background.
Type: string
Default: "no"
Example: "10m"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.extraConfigExtra configuration.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.extraOptionOverridesExtra SSH configuration options that take precedence over any host specific configuration.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.forwardAgentWhether the connection to the authentication agent (if any) will be forwarded to the remote machine.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.hashKnownHostsIndicates that ssh(1) should hash host names and addresses when they are added to the known hosts file.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.includesFile globs of ssh config files that should be included via the
Include directive.
See ssh_config(5) for more information.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocksSpecify per-host settings. Note, if the order of rules matter then use the DAG functions to express the dependencies as shown in the example.
See ssh_config(5) for more information.
Type: list or DAG of submodules
Default:
{
}
Example:
{
"john.example.com" = {
hostname = "example.com";
user = "john";
};
foo = lib.hm.dag.entryBefore ["john.example.com"] {
hostname = "example.com";
identityFile = "/home/john/.ssh/foo_rsa";
};
};
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.addressFamilySpecifies which address family to use when connecting.
Type: null or one of "any", "inet", "inet6"
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.certificateFileSpecifies files from which the user certificate is read.
Type: list of string or null or string
Default:
[
]
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.checkHostIPCheck the host IP address in the
known_hosts file.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.compressionSpecifies whether to use compression. Omitted from the host
block when null.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.dynamicForwardsSpecify dynamic port forwardings. See
ssh_config(5) for DynamicForward.
Type: list of submodule
Default:
[
]
Example:
[ { port = 8080; } ];
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.dynamicForwards.*.addressThe address where to bind the port.
Type: string
Default: "localhost"
Example: "example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.dynamicForwards.*.portSpecifies port number to bind on bind address.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 8080
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.extraOptionsExtra configuration options for the host.
Type: attribute set of string
Default:
{
}
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.forwardAgentWhether the connection to the authentication agent (if any) will be forwarded to the remote machine.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.forwardX11Specifies whether X11 connections will be automatically redirected
over the secure channel and DISPLAY set.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.forwardX11TrustedSpecifies whether remote X11 clients will have full access to the original X11 display.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.hostThe host pattern used by this conditional block.
Type: string
Example: "*.example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.hostnameSpecifies the real host name to log into.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.identitiesOnlySpecifies that ssh should only use the authentication
identity explicitly configured in the
~/.ssh/config files or passed on the
ssh command-line, even if ssh-agent
offers more identities.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.identityFileSpecifies files from which the user identity is read. Identities will be tried in the given order.
Type: list of string or null or string
Default:
[
]
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.localForwardsSpecify local port forwardings. See
ssh_config(5) for LocalForward.
Type: list of submodule
Default:
[
]
Example:
[
{
bind.port = 8080;
host.address = "10.0.0.13";
host.port = 80;
}
];
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.localForwards.*.bind.addressThe address where to bind the port.
Type: string
Default: "localhost"
Example: "example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.localForwards.*.bind.portSpecifies port number to bind on bind address.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 8080
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.localForwards.*.host.addressThe address where to forward the traffic to.
Type: null or string
Default: null
Example: "example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.localForwards.*.host.portSpecifies port number to forward the traffic to.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 80
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.portSpecifies port number to connect on remote host.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.proxyCommandThe command to use to connect to the server.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.proxyJumpThe proxy host to use to connect to the server.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.remoteForwardsSpecify remote port forwardings. See
ssh_config(5) for RemoteForward.
Type: list of submodule
Default:
[
]
Example:
[
{
bind.port = 8080;
host.address = "10.0.0.13";
host.port = 80;
}
];
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.remoteForwards.*.bind.addressThe address where to bind the port.
Type: string
Default: "localhost"
Example: "example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.remoteForwards.*.bind.portSpecifies port number to bind on bind address.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 8080
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.remoteForwards.*.host.addressThe address where to forward the traffic to.
Type: null or string
Default: null
Example: "example.org"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.remoteForwards.*.host.portSpecifies port number to forward the traffic to.
Type: null or 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: null
Example: 80
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.sendEnvEnvironment variables to send from the local host to the server.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.serverAliveCountMaxSets the number of server alive messages which may be sent without SSH receiving any messages back from the server.
Type: positive integer, meaning >0
Default: 3
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.serverAliveIntervalSet timeout in seconds after which response will be requested.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.matchBlocks.<name>.userSpecifies the user to log in as.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.serverAliveCountMaxSets the default number of server alive messages which may be sent without SSH receiving any messages back from the server.
Type: positive integer, meaning >0
Default: 3
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.serverAliveIntervalSet default timeout in seconds after which response will be requested.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.ssh.userKnownHostsFileSpecifies one or more files to use for the user host key
database, separated by whitespace. The default is
~/.ssh/known_hosts.
Type: string
Default: "~/.ssh/known_hosts"
Declared by:
<home-manager/modules/programs/ssh.nix>
|
programs.starship.enableWhether to enable starship.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.enableIonIntegrationWhether to enable Ion integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.packageThe package to use for the starship binary.
Type: package
Default: pkgs.starship
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.starship.settingsConfiguration written to
$XDG_CONFIG_HOME/starship.toml.
See https://starship.rs/config/ for the full list of options.
Type: Starship configuration
Default:
{
}
Example:
{
add_newline = false;
format = lib.concatStrings [
"$line_break"
"$package"
"$line_break"
"$character"
];
scan_timeout = 10;
character = {
success_symbol = "➜";
error_symbol = "➜";
};
}
Declared by:
<home-manager/modules/programs/starship.nix>
|
programs.swaylock.settingsDefault arguments to swaylock. An empty set disables configuration generation.
Type: attribute set of boolean or floating point number or signed integer or string
Default:
{
}
Example:
{
color = "808080"; font-size = 24; indicator-idle-visible = false; indicator-radius = 100; line-color = "ffffff"; show-failed-attempts = true;
}
Declared by:
<home-manager/modules/programs/swaylock.nix>
|
programs.taskwarrior.enableWhether to enable Task Warrior.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/taskwarrior.nix>
|
programs.taskwarrior.colorThemeEither one of the default provided theme as string, or a path to a theme configuration file.
Type: null or string or path
Default: null
Example: "dark-blue-256"
Declared by:
<home-manager/modules/programs/taskwarrior.nix>
|
programs.taskwarrior.configKey-value configuration written to
$XDG_CONFIG_HOME/task/taskrc.
Type: attribute set of anything
Default:
{
}
Example:
{
confirmation = false;
report.minimal.filter = "status:pending";
report.active.columns = [ "id" "start" "entry.age" "priority" "project" "due" "description" ];
report.active.labels = [ "ID" "Started" "Age" "Priority" "Project" "Due" "Description" ];
taskd = {
certificate = "/path/to/cert";
key = "/path/to/key";
ca = "/path/to/ca";
server = "host.domain:53589";
credentials = "Org/First Last/cf31f287-ee9e-43a8-843e-e8bbd5de4294";
};
}
Declared by:
<home-manager/modules/programs/taskwarrior.nix>
|
programs.taskwarrior.dataLocationLocation where Task Warrior will store its data.
Home Manager will attempt to create this directory.
Type: string
Default: "$XDG_DATA_HOME/task"
Declared by:
<home-manager/modules/programs/taskwarrior.nix>
|
programs.taskwarrior.extraConfigAdditional content written at the end of
$XDG_CONFIG_HOME/task/taskrc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/taskwarrior.nix>
|
programs.tealdeer.enableWhether to enable Tealdeer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tealdeer.nix>
|
programs.tealdeer.settingsConfiguration written to
$XDG_CONFIG_HOME/tealdeer/config.toml on Linux or
$HOME/Library/Application Support/tealdeer/config.toml
on Darwin. See
https://dbrgn.github.io/tealdeer/config.html
for more information.
Type: TOML value
Default: { }
Example:
{
display = {
compact = false;
use_pager = true;
};
updates = {
auto_update = false;
};
};
Declared by:
<home-manager/modules/programs/tealdeer.nix>
|
programs.terminator.enableWhether to enable terminator, a tiling terminal emulator.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/terminator.nix>
|
programs.terminator.packageterminator package to install.
Type: package
Default: (build of terminator-2.1.1)
Example: pkgs.terminator
Declared by:
<home-manager/modules/programs/terminator.nix>
|
programs.terminator.configconfiguration for terminator.
For a list of all possible options refer to the terminator_config(5) man page.
Type: attribute set of anything
Default:
{
}
Example:
{
global_config.borderless = true;
profiles.default.background_color = "#002b36";
}
Declared by:
<home-manager/modules/programs/terminator.nix>
|
programs.termite.enableWhether to enable Termite VTE-based terminal.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.enableVteIntegrationWhether to enable Shell VTE integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.allowBoldAllow the output of bold characters when the bold escape sequence appears.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.audibleBellHave the terminal beep on the terminal bell.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.backgroundColorBackground color value.
Type: null or string
Default: null
Example: "rgba(63, 63, 63, 0.8)"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.browserSet the default browser for opening links. If its not set, $BROWSER is read. If that's not set, url hints will be disabled.
Type: null or string
Default: null
Example: "\${pkgs.xdg-utils}/xdg-open"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.clickableUrlAuto-detected URLs can be clicked on to open them in your browser. Only enabled if a browser is configured or detected.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.colorsExtraExtra colors options that should be added to [colors] section.
Type: strings concatenated with "\n"
Default: ""
Example:
'' color0 = #3f3f3f color1 = #705050 color2 = #60b48a ''
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.cursorBlinkSpecify the how the terminal's cursor should behave. Accepts system to respect the gtk global configuration, on and off to explicitly enable or disable them.
Type: null or one of "system", "on", "off"
Default: null
Example: "system"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.cursorColorCursor color value.
Type: null or string
Default: null
Example: "#dcdccc"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.cursorForegroundColorCursor foreground color value.
Type: null or string
Default: null
Example: "#dcdccc"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.cursorShapeSpecify how the cursor should look. Accepts block, ibeam and underline.
Type: null or one of "block", "underline", "ibeam"
Default: null
Example: "block"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.dynamicTitleSettings dynamic title allows the terminal and the shell to update the terminal's title.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.filterUnmatchedUrlsWhether to hide url hints not matching input in url hints mode.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.fontThe font description for the terminal's font.
Type: null or string
Default: null
Example: "Monospace 12"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.foregroundBoldColorForeground bold color value.
Type: null or string
Default: null
Example: "#ffffff"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.foregroundColorForeground color value.
Type: null or string
Default: null
Example: "#dcdccc"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.fullscreenEnables entering fullscreen mode by pressing F11.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.geometryThe default window geometry for new terminal windows.
Type: null or string
Default: null
Example: "640x480"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.highlightColorhighlight color value.
Type: null or string
Default: null
Example: "#2f2f2f"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsActiveBackgroundColorHints active background color value.
Type: null or string
Default: null
Example: "#3f3f3f"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsActiveForegroundColorHints active foreground color value.
Type: null or string
Default: null
Example: "#e68080"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsBackgroundColorHints background color value.
Type: null or string
Default: null
Example: "#3f3f3f"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsBorderColorHints border color value.
Type: null or string
Default: null
Example: "#3f3f3f"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsBorderWidthHints border width.
Type: null or string
Default: null
Example: "0.5"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsExtraExtra hints options that should be added to [hints] section.
Type: strings concatenated with "\n"
Default: ""
Example: "border = #3f3f3f"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsFontThe font description for the hints font.
Type: null or string
Default: null
Example: "Monospace 12"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsForegroundColorHints foreground color value.
Type: null or string
Default: null
Example: "#dcdccc"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsPaddingHints padding.
Type: null or signed integer
Default: null
Example: 2
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.hintsRoundnessHints roundness.
Type: null or string
Default: null
Example: "0.2"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.iconNameThe name of the icon to be used for the terminal process.
Type: null or string
Default: null
Example: "terminal"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.modifyOtherKeysEmit escape sequences for extra keys, like the modifyOtherKeys resource for xterm(1).
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.mouseAutohideAutomatically hide the mouse pointer when you start typing.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.optionsExtraExtra options that should be added to [options] section.
Type: strings concatenated with "\n"
Default: ""
Example: "fullscreen = true"
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.scrollOnKeystrokeScroll to the bottom automatically when a key is pressed.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.scrollOnOutputScroll to the bottom when the shell generates output.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.scrollbackLinesSet the number of lines to limit the terminal's scrollback.
Type: null or signed integer
Default: null
Example: 10000
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.scrollbarScrollbar position.
Type: null or one of "off", "left", "right"
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.searchWrapSearch from top again when you hit the bottom.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.sizeHintsEnable size hints. Locks the terminal resizing to increments of the terminal's cell size. Requires a window manager that respects scroll hints.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.termite.urgentOnBellSets the window as urgent on the terminal bell.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/termite.nix>
|
programs.texlive.enableWhether to enable TeX Live.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/texlive.nix>
|
programs.texlive.packageResulting customized TeX Live package.
Type: package (read only)
Declared by:
<home-manager/modules/programs/texlive.nix>
|
programs.texlive.packageSetTeX Live package set to use.
Type: unspecified
Default: pkgs.texlive
Declared by:
<home-manager/modules/programs/texlive.nix>
|
programs.texlive.extraPackagesExtra packages available to TeX Live.
Type: unspecified
Default: "tpkgs: { inherit (tpkgs) collection-basic; }"
Example:
tpkgs: { inherit (tpkgs) collection-fontsrecommended algorithms; }
Declared by:
<home-manager/modules/programs/texlive.nix>
|
programs.timidity.enableWhether to enable timidity, a software MIDI renderer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/timidity.nix>
|
programs.timidity.packageThe timidity package to use.
Type: package
Default: pkgs.timidity
Declared by:
<home-manager/modules/programs/timidity.nix>
|
programs.timidity.extraConfigExtra configuration.
Type: strings concatenated with "\n"
Default: ""
Example:
''
soundfont ${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2
''
Declared by:
<home-manager/modules/programs/timidity.nix>
|
programs.timidity.finalPackageResulting package.
Type: package (read only)
Declared by:
<home-manager/modules/programs/timidity.nix>
|
programs.tint2.enableWhether to enable tint2, a simple, unobtrusive and light panel for Xorg.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tint2.nix>
|
programs.tint2.packageTint2 package to install.
Type: package
Default: pkgs.tint2
Declared by:
<home-manager/modules/programs/tint2.nix>
|
programs.tint2.extraConfigCommands for tint2 that will be add to the tint2rc
file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/tint2.nix>
|
programs.tiny.enableWhether to enable tiny, a TUI IRC client written in Rust.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tiny.nix>
|
programs.tiny.packageThe tiny package to install.
Type: package
Default: pkgs.tiny
Declared by:
<home-manager/modules/programs/tiny.nix>
|
programs.tiny.settingsConfiguration written to
$XDG_CONFIG_HOME/tiny/config.yml. See
https://github.com/osa1/tiny/blob/master/crates/tiny/config.yml
for the default configuration.
Type: YAML value
Default: { }
Example:
{
servers = [
{
addr = "irc.libera.chat";
port = 6697;
tls = true;
realname = "John Doe";
nicks = [ "tinyuser" ];
}
];
defaults = {
nicks = [ "tinyuser" ];
realname = "John Doe";
join = [];
tls = true;
};
};
Declared by:
<home-manager/modules/programs/tiny.nix>
|
programs.tmux.enableWhether to enable tmux.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.packageThe tmux package to install
Type: package
Default: pkgs.tmux
Example: pkgs.tmux
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.aggressiveResizeResize the window to the size of the smallest session for which it is the current window.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.baseIndexBase index for windows and panes.
Type: unsigned integer, meaning >=0
Default: 0
Example: 1
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.clock24Use 24 hour clock.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.customPaneNavigationAndResizeOverride the hjkl and HJKL bindings for pane navigation and resizing in VI mode.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.disableConfirmationPromptDisable confirmation prompt before killing a pane or window
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.escapeTimeTime in milliseconds for which tmux waits after an escape is input.
Type: unsigned integer, meaning >=0
Default: 500
Example: 0
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.extraConfigAdditional configuration to add to
tmux.conf.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.historyLimitMaximum number of lines held in window history.
Type: positive integer, meaning >0
Default: 2000
Example: 5000
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.keyModeVI or Emacs style shortcuts.
Type: one of "emacs", "vi"
Default: "emacs"
Example: "vi"
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.newSessionAutomatically spawn a session if trying to attach and none are running.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.pluginsList of tmux plugins to be included at the end of your tmux configuration. The sensible plugin, however, is defaulted to run at the top of your configuration.
Type: list of plugin packages or submodules
Default:
[
]
Example:
with pkgs; [
tmuxPlugins.cpu
{
plugin = tmuxPlugins.resurrect;
extraConfig = "set -g @resurrect-strategy-nvim 'session'";
}
{
plugin = tmuxPlugins.continuum;
extraConfig = ''
set -g @continuum-restore 'on'
set -g @continuum-save-interval '60' # minutes
'';
}
]
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.prefixSet the prefix key. Overrules the "shortcut" option when set.
Type: null or string
Default: null
Example: "C-a"
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.resizeAmountNumber of lines/columns when resizing.
Type: positive integer, meaning >0
Default: 5
Example: 10
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.reverseSplitReverse the window split shortcuts.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.secureSocketStore tmux socket under /run, which is more
secure than /tmp, but as a downside it doesn't
survive user logout.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.sensibleOnTopRun the sensible plugin at the top of the configuration. It
is possible to override the sensible settings using the
programs.tmux.extraConfig option.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.shellSet the default-shell tmux variable.
Type: null or string
Default: null
Example: "\${pkgs.zsh}/bin/zsh"
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.shortcutCTRL following by this key is used as the main shortcut.
Type: string
Default: "b"
Example: "a"
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.terminalSet the $TERM variable.
Type: string
Default: "screen"
Example: "screen-256color"
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.tmuxinator.enableWhether to enable tmuxinator.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.tmux.tmuxp.enableWhether to enable tmuxp.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/tmux.nix>
|
programs.topgrade.enableWhether to enable topgrade.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/topgrade.nix>
|
programs.topgrade.packageThe package to use for the topgrade binary.
Type: package
Default: pkgs.topgrade
Declared by:
<home-manager/modules/programs/topgrade.nix>
|
programs.topgrade.settingsConfiguration written to
$XDG_CONFIG_HOME/topgrade.toml.
See https://github.com/r-darwish/topgrade/wiki/Step-list for the full list of options.
Type: TOML value
Default: { }
Example:
{
assume_yes = true;
disable = [
"flutter"
"node"
];
set_title = false;
cleanup = true;
commands = {
"Run garbage collection on Nix store" = "nix-collect-garbage";
};
}
Declared by:
<home-manager/modules/programs/topgrade.nix>
|
programs.urxvt.enableWhether to enable rxvt-unicode terminal emulator.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.packagerxvt-unicode package to install.
Type: package
Default: pkgs.rxvt_unicode
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.extraConfigAdditional configuration to add.
Type: attribute set of anything
Default:
{
}
Example:
{
shading = 15;
}
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.fontsList of fonts to be used.
Type: list of string
Default:
[
]
Example:
[
"xft:Droid Sans Mono Nerd Font:size=9"
]
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.iso14755ISO14755 support for viewing and entering unicode characters.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.keybindingsMapping of keybindings to actions
Type: attribute set of string
Default:
{
}
Example:
{
"Shift-Control-C" = "eval:selection_to_clipboard";
"Shift-Control-V" = "eval:paste_clipboard";
}
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.barScrollbar settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.bar.enableWhether to enable the scrollbar
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.bar.alignScrollbar alignment.
Type: one of "top", "bottom", "center"
Default: "center"
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.bar.floatingWhether to display an rxvt scrollbar without a trough.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.bar.positionScrollbar position.
Type: one of "left", "right"
Default: "right"
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.bar.styleScrollbar style.
Type: one of "rxvt", "plain", "next", "xterm"
Default: "plain"
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.keepPositionWhether to keep a scroll position when TTY receives new lines.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.linesNumber of lines to save in the scrollback buffer.
Type: unsigned integer, meaning >=0
Default: 10000
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.scrollOnKeystrokeWhether to scroll to bottom on keyboard input.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.scroll.scrollOnOutputWhether to scroll to bottom on TTY output.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.shadingDarken (0 .. 99) or lighten (101 .. 200) the transparent background.
Type: integer between 0 and 200 (both inclusive)
Default: 100
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.urxvt.transparentWhether to enable pseudo-transparency.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/urxvt.nix>
|
programs.vim.enableWhether to enable Vim.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vim.packageResulting customized vim package
Type: package (read only)
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vim.packageConfigurableConfigurable vim package
Type: package
Default: "pkgs.vim_configurable"
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vim.extraConfigCustom .vimrc lines
Type: strings concatenated with "\n"
Default: ""
Example:
'' set nocompatible set nobackup ''
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vim.pluginsList of vim plugins to install. To get a list of supported plugins run: nix-env -f '<nixpkgs>' -qaP -A vimPlugins.
Note: String values are deprecated, please use actual packages.
Type: list of string or package
Default:
[
(build of vimplugin-vim-sensible-2022-08-26)
]
Example: [ pkgs.vimPlugins.YankRing ]
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vim.settingsAt attribute set of Vim settings. The attribute names and corresponding values must be among the following supported options.
background | one of "dark", "light" |
backupdir | list of string |
copyindent | boolean |
directory | list of string |
expandtab | boolean |
hidden | boolean |
history | signed integer |
ignorecase | boolean |
modeline | boolean |
mouse | one of "n", "v", "i", "c", "h", "a", "r" |
mousefocus | boolean |
mousehide | boolean |
mousemodel | one of "extend", "popup", "popup_setpos" |
number | boolean |
relativenumber | boolean |
shiftwidth | signed integer |
smartcase | boolean |
tabstop | signed integer |
undodir | list of string |
undofile | boolean |
See the Vim documentation for detailed descriptions of these
options. Note, use extraConfig to
manually set any options not listed above.
Type: submodule
Default:
{
}
Example:
{
expandtab = true;
history = 1000;
background = "dark";
}
Declared by:
<home-manager/modules/programs/vim.nix>
|
programs.vscode.enableWhether to enable Visual Studio Code.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.packageVersion of Visual Studio Code to install.
Type: package
Default: (build of vscode-1.70.2)
Example: pkgs.vscodium
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.extensionsThe extensions Visual Studio Code should be started with.
Type: list of package
Default:
[
]
Example: [ pkgs.vscode-extensions.bbenoist.nix ]
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.haskell.enableWhether to enable Haskell integration for Visual Studio Code.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/vscode/haskell.nix>
|
programs.vscode.haskell.hie.enableWhether to enable Haskell IDE engine integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/vscode/haskell.nix>
|
programs.vscode.haskell.hie.executablePathThe path to the Haskell IDE Engine executable.
Because hie-nix is not packaged in Nixpkgs, you need to add it as an overlay or set this option. Example overlay configuration:
nixpkgs.overlays = [
(self: super: { hie-nix = import ~/src/hie-nix {}; })
]
Type: path
Default: "${pkgs.hie-nix.hies}/bin/hie-wrapper"
Example:
(import ~/src/haskell-ide-engine {}).hies + "/bin/hie-wrapper";
Declared by:
<home-manager/modules/programs/vscode/haskell.nix>
|
programs.vscode.keybindingsKeybindings written to Visual Studio Code's
keybindings.json.
Type: list of submodule
Default:
[
]
Example:
[
{
key = "ctrl+c";
command = "editor.action.clipboardCopyAction";
when = "textInputFocus";
}
]
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.keybindings.*.argsOptional arguments for a command.
Type: null or JSON value
Default: null
Example:
{
direction = "up";
}
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.keybindings.*.commandThe VS Code command to execute.
Type: string
Example: "editor.action.clipboardCopyAction"
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.keybindings.*.keyThe key or key-combination to bind.
Type: string
Example: "ctrl+c"
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.keybindings.*.whenOptional context filter.
Type: null or string
Default: null
Example: "textInputFocus"
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.mutableExtensionsDirWhether extensions can be installed or updated manually or by Visual Studio Code.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.userSettingsConfiguration written to Visual Studio Code's
settings.json.
Type: JSON value
Default:
{
}
Example:
{
"update.channel" = "none";
"[nix]"."editor.tabSize" = 2;
}
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.vscode.userTasksConfiguration written to Visual Studio Code's
tasks.json.
Type: JSON value
Default:
{
}
Example:
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Hello task",
"command": "hello",
}
]
}
Declared by:
<home-manager/modules/programs/vscode.nix>
|
programs.watson.enableWhether to enable watson, a wonderful CLI to track your time.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.watson.enableBashIntegrationWhether to enable watson's bash integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.watson.enableFishIntegrationWhether to enable watson's fish integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.watson.enableZshIntegrationWhether to enable watson's zsh integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.watson.packagePackage providing the watson.
Type: package
Default: pkgs.watson
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.watson.settingsConfiguration written to
$XDG_CONFIG_HOME/watson/config on Linux or
$HOME/Library/Application Support/watson/config on Darwin.
See https://github.com/TailorDev/Watson/blob/master/docs/user-guide/configuration.md for an example configuration.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
backend = {
url = "https://api.crick.fr";
token = "yourapitoken";
};
options = {
stop_on_start = true;
stop_on_restart = false;
date_format = "%Y.%m.%d";
time_format = "%H:%M:%S%z";
week_start = "monday";
log_current = false;
pager = true;
report_current = false;
reverse_log = true;
};
}
Declared by:
<home-manager/modules/programs/watson.nix>
|
programs.waybar.enableWhether to enable Waybar.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.waybar.packageWaybar package to use. Set to null to use the default package.
Type: package
Default: pkgs.waybar
Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.waybar.settingsConfiguration for Waybar, see https://github.com/Alexays/Waybar/wiki/Configuration for supported values.
Type: list of JSON value or attribute set of JSON value
Default:
[
]
Example:
{
mainBar = {
layer = "top";
position = "top";
height = 30;
output = [
"eDP-1"
"HDMI-A-1"
];
modules-left = [ "sway/workspaces" "sway/mode" "wlr/taskbar" ];
modules-center = [ "sway/window" "custom/hello-from-waybar" ];
modules-right = [ "mpd" "custom/mymodule#with-css-id" "temperature" ];
"sway/workspaces" = {
disable-scroll = true;
all-outputs = true;
};
"custom/hello-from-waybar" = {
format = "hello {}";
max-length = 40;
interval = "once";
exec = pkgs.writeShellScript "hello-from-waybar" ''
echo "from within waybar"
'';
};
};
}
Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.waybar.styleCSS style of the bar.
See https://github.com/Alexays/Waybar/wiki/Configuration for the documentation.
If the value is set to a path literal, then the path will be used as the css file.
Type: null or path or string
Default: null
Example:
''
* {
border: none;
border-radius: 0;
font-family: Source Code Pro;
}
window#waybar {
background: #16191C;
color: #AAB2BF;
}
#workspaces button {
padding: 0 5px;
}
''Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.waybar.systemd.enableWhether to enable Waybar systemd integration.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.waybar.systemd.targetThe systemd target that will automatically start the Waybar service.
When setting this value to "sway-session.target",
make sure to also enable wayland.windowManager.sway.systemdIntegration,
otherwise the service may never be started.
Type: string
Default: "graphical-session.target"
Example: "sway-session.target"
Declared by:
<home-manager/modules/programs/waybar.nix>
|
programs.wezterm.enableWhether to enable wezterm.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/wezterm.nix>
|
programs.wezterm.packageThe Wezterm package to install.
Type: package
Default: pkgs.wezterm
Declared by:
<home-manager/modules/programs/wezterm.nix>
|
programs.wezterm.colorSchemesAttribute set of additional color schemes to be written to
$XDG_CONFIG_HOME/wezterm/colors, where each key is
taken as the name of the corresponding color scheme. See
https://wezfurlong.org/wezterm/config/appearance.html#defining-a-color-scheme-in-a-separate-file
for more details of the TOML color scheme format.
Type: attribute set of TOML value
Default:
{
}
Example:
myCoolTheme = {
ansi = [
"#222222" "#D14949" "#48874F" "#AFA75A"
"#599797" "#8F6089" "#5C9FA8" "#8C8C8C"
];
brights = [
"#444444" "#FF6D6D" "#89FF95" "#FFF484"
"#97DDFF" "#FDAAF2" "#85F5DA" "#E9E9E9"
];
background = "#1B1B1B";
cursor_bg = "#BEAF8A";
cursor_border = "#BEAF8A";
cursor_fg = "#1B1B1B";
foreground = "#BEAF8A";
selection_bg = "#444444";
selection_fg = "#E9E9E9";
};
Declared by:
<home-manager/modules/programs/wezterm.nix>
|
programs.wezterm.extraConfigExtra configuration written to
$XDG_CONFIG_HOME/wezterm/wezterm.lua. See
https://wezfurlong.org/wezterm/config/files.html
how to configure.
Type: strings concatenated with "\n"
Default:
''
return {}
''Example:
-- Your lua code / config here
local mylib = require 'mylib';
return {
usemylib = mylib.do_fun();
font = wezterm.font("JetBrains Mono"),
font_size = 16.0,
color_scheme = "Tomorrow Night",
hide_tab_bar_if_only_one_tab = true,
default_prog = { "zsh", "--login", "-c", "tmux attach -t dev || tmux new -s dev" },
keys = {
{key="n", mods="SHIFT|CTRL", action="ToggleFullScreen"},
}
}
Declared by:
<home-manager/modules/programs/wezterm.nix>
|
programs.xmobar.enableWhether to enable Xmobar, a minimalistic status bar.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/xmobar.nix>
|
programs.xmobar.packagePackage providing the xmobar binary.
Type: package
Default: pkgs.haskellPackages.xmobar
Declared by:
<home-manager/modules/programs/xmobar.nix>
|
programs.xmobar.extraConfigExtra configuration lines to add to
$XDG_CONFIG_HOME/xmobar/.xmobarrc.
See
https://xmobar.org/#configuration
for options.
Type: strings concatenated with "\n"
Default: ""
Example:
Config
{ font = "Fira Code"
, borderColor = "#d0d0d0"
, border = FullB
, borderWidth = 3
, bgColor = "#222"
, fgColor = "grey"
, position = TopSize C 99 30
, commands =
[ Run Cpu ["-t", "cpu: <fc=#4eb4fa><bar> <total>%</fc>"] 10
, Run Network "enp3s0" ["-S", "True", "-t", "eth: <fc=#4eb4fa><rx></fc>/<fc=#4eb4fa><tx></fc>"] 10
, Run Memory ["-t","mem: <fc=#4eb4fa><usedbar> <usedratio>%</fc>"] 10
, Run Date "date: <fc=#4eb4fa>%a %d %b %Y %H:%M:%S </fc>" "date" 10
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = " %StdinReader% | %cpu% | %memory% | %enp3s0% }{%date% "
}
Declared by:
<home-manager/modules/programs/xmobar.nix>
|
programs.z-lua.enableWhether to enable z.lua.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.z-lua.enableAliasesWhether to enable recommended z.lua aliases.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.z-lua.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.z-lua.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.z-lua.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.z-lua.optionsList of options to pass to z.lua.
Type: list of string
Default:
[
]
Example:
[
"enhanced" "once" "fzf"
]
Declared by:
<home-manager/modules/programs/z-lua.nix>
|
programs.zathura.enableWhether to enable Zathura, a highly customizable and functional document viewer focused on keyboard interaction.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zathura.nix>
|
programs.zathura.packageThe Zathura package to use
Type: package
Default: "pkgs.zathura"
Declared by:
<home-manager/modules/programs/zathura.nix>
|
programs.zathura.extraConfigAdditional commands for zathura that will be added to the
zathurarc file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zathura.nix>
|
programs.zathura.mappingsAdd :map mappings to zathura and make
them permanent. See
zathurarc(5)
for the full list of possible mappings.
Type: attribute set of string
Default:
{
}
Example:
{
<Right> = "navigate next"; D = "toggle_page_mode";
}
Declared by:
<home-manager/modules/programs/zathura.nix>
|
programs.zathura.optionsAdd :set command options to zathura and make
them permanent. See
zathurarc(5)
for the full list of options.
Type: attribute set of string or boolean or signed integer
Default:
{
}
Example:
{
default-bg = "#000000"; default-fg = "#FFFFFF";
}
Declared by:
<home-manager/modules/programs/zathura.nix>
|
programs.zellij.enableWhether to enable zellij.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zellij.nix>
|
programs.zellij.packageThe zellij package to install.
Type: package
Default: pkgs.zellij
Declared by:
<home-manager/modules/programs/zellij.nix>
|
programs.zellij.settingsConfiguration written to
$XDG_CONFIG_HOME/zellij/config.yaml.
See https://zellij.dev/documentation for the full list of options.
Type: YAML value
Default:
{
}
Example:
{
theme = "custom";
themes.custom.fg = 5;
}
Declared by:
<home-manager/modules/programs/zellij.nix>
|
programs.zoxide.enableWhether to enable zoxide.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zoxide.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zoxide.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zoxide.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zoxide.packageZoxide package to install.
Type: package
Default: pkgs.zoxide
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zoxide.optionsList of options to pass to zoxide.
Type: list of string
Default:
[
]
Example:
[
"--no-aliases"
]
Declared by:
<home-manager/modules/programs/zoxide.nix>
|
programs.zsh.enableWhether to enable Z shell (Zsh).
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.enableAutosuggestionsEnable zsh autosuggestions
Type: unspecified
Default: false
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.enableCompletionEnable zsh completion. Don't forget to add
environment.pathsToLink = [ "/share/zsh" ];
to your system configuration to get completion for system packages (e.g. systemd).
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.enableSyntaxHighlightingEnable zsh syntax highlighting
Type: unspecified
Default: false
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.enableVteIntegrationWhether to enable integration with terminals using the VTE library. This will let the terminal track the current working directory.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/vte.nix>
|
programs.zsh.autocdAutomatically enter into a directory if typed directly into shell.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.cdpathList of paths to autocomplete calls to `cd`.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.completionInitInitialization commands to run when completion is enabled.
Type: strings concatenated with "\n"
Default: "autoload -U compinit && compinit"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.defaultKeymapThe default base keymap to use.
Type: null or one of "emacs", "vicmd", "viins"
Default: null
Example: "emacs"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.dirHashesAn attribute set that adds to named directory hash table.
Type: attribute set of string
Default:
{
}
Example:
{
docs = "$HOME/Documents";
vids = "$HOME/Videos";
dl = "$HOME/Downloads";
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.dotDirDirectory where the zsh configuration and more should be located, relative to the users home directory. The default is the home directory.
Type: null or string
Default: null
Example: ".config/zsh"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.envExtraExtra commands that should be added to .zshenv.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.historyOptions related to commands history configuration.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.expireDuplicatesFirstExpire duplicates first.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.extendedSave timestamp into the history file.
Type: boolean
Default: false
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.ignoreDupsDo not enter command lines into the history list if they are duplicates of the previous event.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.ignorePatternsDo not enter command lines into the history list if they match any one of the given shell patterns.
Type: list of string
Default:
[
]
Example: [ "rm *" "pkill *" ]
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.ignoreSpaceDo not enter command lines into the history list if the first character is a space.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.pathHistory file location
Type: string
Default:
"$HOME/.zsh_history" if state version ≥ 20.03, "$ZDOTDIR/.zsh_history" otherwise
Example: "${config.xdg.dataHome}/zsh/zsh_history"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.saveNumber of history lines to save.
Type: signed integer
Default: 10000
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.shareShare command history between zsh sessions.
Type: boolean
Default: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.history.sizeNumber of history lines to keep.
Type: signed integer
Default: 10000
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.initExtraExtra commands that should be added to .zshrc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.initExtraBeforeCompInitExtra commands that should be added to .zshrc before compinit.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.initExtraFirstCommands that should be added to top of .zshrc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.localVariablesExtra local variables defined at the top of .zshrc.
Type: attribute set
Default:
{
}
Example:
{
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS =
[
"dir" "vcs"
]
;
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.loginExtraExtra commands that should be added to .zlogin.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.logoutExtraExtra commands that should be added to .zlogout.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zshOptions to configure oh-my-zsh.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zsh.enableWhether to enable oh-my-zsh.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zsh.customPath to a custom oh-my-zsh package to override config of oh-my-zsh. See https://github.com/robbyrussell/oh-my-zsh/wiki/Customization for more information.
Type: string
Default: ""
Example: "$HOME/my_customizations"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zsh.extraConfigExtra settings for plugins.
Type: strings concatenated with "\n"
Default: ""
Example:
'' zstyle :omz:plugins:ssh-agent identities id_rsa id_rsa2 id_github ''
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zsh.pluginsList of oh-my-zsh plugins
Type: list of string
Default:
[
]
Example:
[
"git" "sudo"
]
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.oh-my-zsh.themeName of the theme to be used by oh-my-zsh.
Type: string
Default: ""
Example: "robbyrussell"
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.pluginsPlugins to source in .zshrc.
Type: list of submodule
Default:
[
]
Example:
[
{
# will source zsh-autosuggestions.plugin.zsh
name = "zsh-autosuggestions";
src = pkgs.fetchFromGitHub {
owner = "zsh-users";
repo = "zsh-autosuggestions";
rev = "v0.4.0";
sha256 = "0z6i9wjjklb4lvr7zjhbphibsyx51psv50gm07mbb0kj9058j6kc";
};
}
{
name = "enhancd";
file = "init.sh";
src = pkgs.fetchFromGitHub {
owner = "b4b4r07";
repo = "enhancd";
rev = "v2.2.1";
sha256 = "0iqa9j09fwm6nj5rpip87x3hnvbbz9w9ajgm6wkrd5fls8fn8i5g";
};
}
]
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.plugins.*.fileThe plugin script to source.
Type: string
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.plugins.*.nameThe name of the plugin.
Don't forget to add file
if the script name does not follow convention.
Type: string
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.plugins.*.srcPath to the plugin folder.
Will be added to fpath and PATH.
Type: path
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.preztoOptions to configure prezto.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.enableWhether to enable prezto.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.autosuggestions.colorSet the query found color.
Type: null or string
Default: null
Example: "fg=blue"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.caseSensitiveSet case-sensitivity for completion, history lookup, etc.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.colorColor output (auto set to 'no' on dumb terminals)
Type: null or boolean
Default: true
Example: false
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.completions.ignoredHostsSet the entries to ignore in static */etc/hosts* for host completion.
Type: list of string
Default:
[
]
Example:
[
"0.0.0.0" "127.0.0.1"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.editor.dotExpansionAuto convert .... to ../..
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.editor.keymapSet the key mapping style to 'emacs' or 'vi'.
Type: null or one of "emacs", "vi"
Default: "emacs"
Example: "vi"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.editor.promptContextAllow the zsh prompt context to be shown.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.extraConfigAdditional configuration to add to .zpreztorc.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.extraFunctionsSet the Zsh functions to load (man zshcontrib).
Type: list of string
Default:
[
]
Example:
[
"zargs" "zmv"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.extraModulesSet the Zsh modules to load (man zshmodules).
Type: list of string
Default:
[
]
Example:
[
"attr" "stat"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.git.submoduleIgnoreIgnore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
Type: null or one of "dirty", "untracked", "all", "none"
Default: null
Example: "all"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.gnuUtility.prefixSet the command prefix on non-GNU systems.
Type: null or string
Default: null
Example: "g"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.historySubstring.foundColorSet the query found color.
Type: null or string
Default: null
Example: "fg=blue"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.historySubstring.globbingFlagsSet the search globbing flags.
Type: null or string
Default: null
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.historySubstring.notFoundColorSet the query not found color.
Type: null or string
Default: null
Example: "fg=red"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.macOS.dashKeywordSet the keyword used by `mand` to open man pages in Dash.app
Type: null or string
Default: null
Example: "manpages"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.pmoduleDirsAdd additional directories to load prezto modules from
Type: list of path
Default:
[
]
Example:
[
"$HOME/.zprezto-contrib"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.pmodulesSet the Prezto modules to load (browse modules). The order matters.
Type: list of string
Default:
[
"environment" "terminal" "editor" "history" "directory" "spectrum" "utility" "completion" "prompt"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.prompt.pwdLengthSet the working directory prompt display length. By default, it is set to 'short'. Set it to 'long' (without '~' expansion) for longer or 'full' (with '~' expansion) for even longer prompt display.
Type: null or one of "short", "long", "full"
Default: null
Example: "short"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.prompt.showReturnValSet the prompt to display the return code along with an indicator for non-zero return codes. This is not supported by all prompts.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.prompt.themeSet the prompt theme to load. Setting it to 'random' loads a random theme. Auto set to 'off' on dumb terminals.
Type: null or string
Default: "sorin"
Example: "pure"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.python.virtualenvAutoSwitchAuto switch to Python virtualenv on directory change.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.python.virtualenvInitializeAutomatically initialize virtualenvwrapper if pre-requisites are met.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.ruby.chrubyAutoSwitchAuto switch the Ruby version on directory change.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.screen.autoStartLocalAuto start a session when Zsh is launched in a local terminal.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.screen.autoStartRemoteAuto start a session when Zsh is launched in a SSH connection.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.ssh.identitiesSet the SSH identities to load into the agent.
Type: list of string
Default:
[
]
Example:
[
"id_rsa" "id_rsa2" "id_github"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.syntaxHighlighting.highlightersSet syntax highlighters. By default, only the main highlighter is enabled.
Type: list of string
Default:
[
]
Example:
[
"main" "brackets" "pattern" "line" "cursor" "root"
]
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.syntaxHighlighting.patternSet syntax pattern styles.
Type: attribute set of string
Default:
{
}
Example:
{
rm*-rf* = "fg=white,bold,bg=red";
}
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.syntaxHighlighting.stylesSet syntax highlighting styles.
Type: attribute set of string
Default:
{
}
Example:
{
builtin = "bg=blue"; command = "bg=blue"; function = "bg=blue";
}
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.terminal.autoTitleAuto set the tab and window titles.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.terminal.multiplexerTitleFormatSet the multiplexer title format.
Type: null or string
Default: null
Example: "%s"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.terminal.tabTitleFormatSet the tab title format.
Type: null or string
Default: null
Example: "%m: %s"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.terminal.windowTitleFormatSet the window title format.
Type: null or string
Default: null
Example: "%n@%m: %s"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.tmux.autoStartLocalAuto start a session when Zsh is launched in a local terminal.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.tmux.autoStartRemoteAuto start a session when Zsh is launched in a SSH connection.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.tmux.defaultSessionNameSet the default session name.
Type: null or string
Default: null
Example: "YOUR DEFAULT SESSION NAME"
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.tmux.itermIntegrationIntegrate with iTerm2.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.prezto.utility.safeOpsEnabled safe options. This aliases cp, ln, mv and rm so that they prompt before deleting or overwriting files. Set to 'no' to disable this safer behavior.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/programs/zsh/prezto.nix>
|
programs.zsh.profileExtraExtra commands that should be added to .zprofile.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.sessionVariablesEnvironment variables that will be set for zsh session.
Type: attribute set
Default:
{
}
Example:
{
MAILCHECK = 30;
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.shellAliasesAn attribute set that maps aliases (the top level attribute names in this option) to command strings or directly to build outputs.
Type: attribute set of string
Default:
{
}
Example:
{
ll = "ls -l";
".." = "cd ..";
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.shellGlobalAliasesSimilar to programs.zsh.shellAliases,
but are substituted anywhere on a line.
Type: attribute set of string
Default:
{
}
Example:
{
UUID = "$(uuidgen | tr -d \\n)";
G = "| grep";
}
Declared by:
<home-manager/modules/programs/zsh.nix>
|
programs.zsh.zplug.enableWhether to enable zplug - a zsh plugin manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/zplug.nix>
|
programs.zsh.zplug.pluginsList of zplug plugins.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/programs/zplug.nix>
|
programs.zsh.zplug.plugins.*.nameThe name of the plugin.
Type: string
Declared by:
<home-manager/modules/programs/zplug.nix>
|
programs.zsh.zplug.plugins.*.tagsThe plugin tags.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/programs/zplug.nix>
|
programs.zsh.zplug.zplugHomePath to zplug home directory.
Type: path
Default: "~/.zplug"
Declared by:
<home-manager/modules/programs/zplug.nix>
|
qt.enableWhether to enable Qt 4 and 5 configuration.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/qt.nix>
|
qt.platformThemeSelects the platform theme to use for Qt applications.
The options are
gtkUse GTK theme with qtstyleplugins
gnomeUse GNOME theme with qgnomeplatform
Type: null or one of "gtk", "gnome"
Default: null
Example: "gnome"
Related packages:
pkgs.qgnomeplatform (qgnomeplatform-0.8.4): QPlatformTheme for a better Qt application inclusion in GNOME
pkgs.libsForQt5.qtstyleplugins (qtstyleplugins-unstable-2017-03-11): Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique
Declared by:
<home-manager/modules/misc/qt.nix>
|
qt.style.packageTheme package to be used in Qt5 applications.
Type: null or package
Default: null
Example: pkgs.adwaita-qt
Declared by:
<home-manager/modules/misc/qt.nix>
|
qt.style.nameSelects the style to use for Qt5 applications.
The options are
adwaita, adwaita-darkUse Adwaita Qt style with adwaita
cleanlooks, gtk2, motif, plastiqueUse styles from qtstyleplugins
Type: null or string
Default: null
Example: "adwaita-dark"
Related packages:
pkgs.adwaita-qt (adwaita-qt-1.4.1): A style to bend Qt applications to look like they belong into GNOME Shell
pkgs.libsForQt5.qtstyleplugins (qtstyleplugins-unstable-2017-03-11): Additional style plugins for Qt5, including BB10, GTK, Cleanlooks, Motif, Plastique
Declared by:
<home-manager/modules/misc/qt.nix>
|
services.barrier.client.enableWhether to enable Barrier Client daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.barrier.client.enableCryptoWhether to enable crypto (SSL) plugin.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.barrier.client.enableDragDropWhether to enable file drag & drop.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.barrier.client.extraFlagsAdditional flags to pass to barrierc. See barrierc --help.
Type: list of string
Default: [ "-f" ]
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.barrier.client.nameScreen name of client. Defaults to hostname.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.barrier.client.serverServer to connect to formatted as
<host>[:<port>].
Port defaults to 24800.
Type: string
Declared by:
<home-manager/modules/services/barrier.nix>
|
services.betterlockscreen.enableWhether to enable betterlockscreen, a screen-locker module.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/betterlockscreen.nix>
|
services.betterlockscreen.packagePackage providing betterlockscreen.
Type: package
Default: pkgs.betterlockscreen
Declared by:
<home-manager/modules/services/betterlockscreen.nix>
|
services.betterlockscreen.argumentsList of arguments appended to ./betterlockscreen --lock [args]
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/services/betterlockscreen.nix>
|
services.betterlockscreen.inactiveIntervalValue used for services.screen-locker.inactiveInterval.
Type: signed integer
Default: 10
Declared by:
<home-manager/modules/services/betterlockscreen.nix>
|
services.blueman-applet.enableWhether to enable the Blueman applet.
Note, for the applet to work, the 'blueman' service should be enabled system-wide. You can enable it in the system configuration using
services.blueman.enable = true;
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/blueman-applet.nix>
|
services.caffeine.enableWhether to enable Caffeine service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/caffeine.nix>
|
services.cbatticon.enableWhether to enable cbatticon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.commandCriticalLevelCommand to execute when the critical battery level is reached.
Type: null or strings concatenated with "\n"
Default: null
Example:
'' notify-send "battery critical!" ''
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.commandLeftClickCommand to execute when left clicking on the tray icon.
Type: null or strings concatenated with "\n"
Default: null
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.criticalLevelPercentCritical level percentage of the battery in percent (without the percent symbol).
Type: null or integer between 0 and 100 (both inclusive)
Default: null
Example: 5
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.hideNotificationHide the notification popups.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.iconTypeIcon type to display in the system tray.
Type: null or one of "standard", "notification", "symbolic"
Default: null
Example: "symbolic"
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.lowLevelPercentLow level percentage of the battery in percent (without the percent symbol).
Type: null or integer between 0 and 100 (both inclusive)
Default: null
Example: 20
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.cbatticon.updateIntervalSecondsNumber of seconds between updates of the battery information.
Type: null or positive integer, meaning >0
Default: null
Example: 5
Declared by:
<home-manager/modules/services/cbatticon.nix>
|
services.clipmenu.enableWhether to enable clipmenu, the clipboard management daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/clipmenu.nix>
|
services.clipmenu.packageclipmenu derivation to use.
Type: package
Default: "pkgs.clipmenu"
Declared by:
<home-manager/modules/services/clipmenu.nix>
|
services.clipmenu.launcherLauncher command, if not set, dmenu will be used by default.
Type: null or string
Default: null
Example: "rofi"
Declared by:
<home-manager/modules/services/clipmenu.nix>
|
services.devilspie2.enableWhether to enable Devilspie2, a window matching utility, allowing the user to perform scripted actions on windows as they are created.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/devilspie2.nix>
|
services.devilspie2.configContent of file placed in the devilspie2 config directory.
Type: strings concatenated with "\n"
Default: ""
Example:
''
if (get_window_class() == "Gnome-terminal") then
make_always_on_top();
end
''Declared by:
<home-manager/modules/services/devilspie2.nix>
|
services.dropbox.enableWhether to enable Dropbox daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/dropbox.nix>
|
services.dropbox.pathWhere to put the Dropbox directory.
Type: path
Default: "${config.home.homeDirectory}/Dropbox"
Declared by:
<home-manager/modules/services/dropbox.nix>
|
services.dunst.enableWhether to enable the dunst notification daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.packagePackage providing dunst.
Type: package
Default: pkgs.dunst
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.configFilePath to the configuration file read by dunst.
Note that the configuration generated by Home Manager will be
written to $XDG_CONFIG_HOME/dunst/dunstrc
regardless. This allows using a mutable configuration file generated
from the immutable one, useful in scenarios where live reloading is
desired.
Type: string or path
Default: "$XDG_CONFIG_HOME/dunst/dunstrc"
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.iconThemeSet the icon theme.
Type: submodule
Default:
{
name = "hicolor"; package = (build of hicolor-icon-theme-0.17); size = "32x32";
}
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.iconTheme.packagePackage providing the theme.
Type: package
Example: pkgs.gnome.adwaita-icon-theme
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.iconTheme.nameThe name of the theme within the package.
Type: string
Example: "Adwaita"
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.iconTheme.sizeThe desired icon size.
Type: string
Default: "32x32"
Example: "16x16"
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.settingsConfiguration written to $XDG_CONFIG_HOME/dunst/dunstrc.
Type: attribute set of attribute set of string or boolean or signed integer or list of string
Default:
{
}
Example:
{
global = {
width = 300;
height = 300;
offset = "30x50";
origin = "top-right";
transparency = 10;
frame_color = "#eceff1";
font = "Droid Sans 9";
};
urgency_normal = {
background = "#37474f";
foreground = "#eceff1";
timeout = 10;
};
};
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.settings.global.icon_pathPaths where dunst will look for icons.
Type: strings concatenated with ":"
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dunst.waylandDisplaySet the service's WAYLAND_DISPLAY environment variable.
Type: string
Default: ""
Declared by:
<home-manager/modules/services/dunst.nix>
|
services.dwm-status.enableWhether to enable dwm-status user service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/dwm-status.nix>
|
services.dwm-status.packageWhich dwm-status package to use.
Type: package
Default: pkgs.dwm-status
Example: "pkgs.dwm-status.override { enableAlsaUtils = false; }"
Declared by:
<home-manager/modules/services/dwm-status.nix>
|
services.dwm-status.extraConfigExtra config of dwm-status.
Type: JSON value
Default:
{
}
Example:
{
separator = "#";
battery = {
notifier_levels = [ 2 5 10 15 20 ];
};
time = {
format = "%H:%M";
};
}
Declared by:
<home-manager/modules/services/dwm-status.nix>
|
services.dwm-status.orderList of enabled features in order.
Type: list of one of "audio", "backlight", "battery", "cpu_load", "network", "time"
Declared by:
<home-manager/modules/services/dwm-status.nix>
|
services.easyeffects.enableWhether to enable Easyeffects daemon. Note, it is necessary to add
programs.dconf.enable = true;
to your system configuration for the daemon to work correctly.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/easyeffects.nix>
|
services.easyeffects.presetWhich preset to use when starting easyeffects. Will likely need to launch easyeffects to initially create preset.
Type: string
Default: ""
Declared by:
<home-manager/modules/services/easyeffects.nix>
|
services.emacs.enableWhether to enable the Emacs daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.packageThe Emacs package to use.
Type: package
Default:
if config.programs.emacs.enable then config.programs.emacs.finalPackage else pkgs.emacs
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.client.enableWhether to enable generation of Emacs client desktop file.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.client.argumentsCommand-line arguments to pass to emacsclient.
Type: list of string
Default:
[
"-c"
]
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.defaultEditorWhether to configure emacsclient as the default
editor using the EDITOR environment variable.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.extraOptionsExtra command-line arguments to pass to emacs.
Type: list of string
Default:
[
]
Example:
[
"-f" "exwm-enable"
]
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.socketActivation.enableWhether to enable systemd socket activation for the Emacs service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.emacs.startWithUserSessionWhether to launch Emacs service with the systemd user session.
Type: boolean
Default: !config.services.emacs.socketActivation.enable
Example: true
Declared by:
<home-manager/modules/services/emacs.nix>
|
services.espanso.enableWhether to enable Espanso: cross platform text expander in Rust.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/espanso.nix>
|
services.espanso.packageWhich espanso package to use
Type: package
Default: pkgs.espanso
Declared by:
<home-manager/modules/services/espanso.nix>
|
services.espanso.settingsThe Espanso configuration to use. See https://espanso.org/docs/configuration/ for a description of available options.
Type: YAML value
Default:
{
matches =
[
]
;
}
Example:
{
matches = [
{ # Simple text replacement
trigger = ":espanso";
replace = "Hi there!";
}
{ # Dates
trigger = ":date";
replace = "{{mydate}}";
vars = [{
name = "mydate";
type = "date";
params = { format = "%m/%d/%Y"; };
}];
}
{ # Shell commands
trigger = ":shell";
replace = "{{output}}";
vars = [{
name = "output";
type = "shell";
params = { cmd = "echo Hello from your shell"; };
}];
}
];
}
Declared by:
<home-manager/modules/services/espanso.nix>
|
services.etesync-dav.enableWhether to enable etesync-dav.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/etesync-dav.nix>
|
services.etesync-dav.packageThe etesync-dav derivation to use.
Type: package
Default: "pkgs.etesync-dav"
Declared by:
<home-manager/modules/services/etesync-dav.nix>
|
services.etesync-dav.serverUrlThe URL to the etesync server.
Type: string
Default: "https://api.etesync.com/"
Declared by:
<home-manager/modules/services/etesync-dav.nix>
|
services.etesync-dav.settingsSettings for etesync-dav, passed as environment variables.
Type: attribute set of string or signed integer
Default:
{
}
Example:
{
ETESYNC_LISTEN_ADDRESS = "localhost";
ETESYNC_LISTEN_PORT = 37358;
}
Declared by:
<home-manager/modules/services/etesync-dav.nix>
|
services.flameshot.enableWhether to enable Flameshot.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/flameshot.nix>
|
services.flameshot.packagePackage providing flameshot.
Type: package
Default: pkgs.flameshot
Declared by:
<home-manager/modules/services/flameshot.nix>
|
services.flameshot.settingsConfiguration to use for Flameshot. See https://github.com/flameshot-org/flameshot/blob/master/flameshot.example.ini for available options.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
General =
{
disabledTrayIcon = true; showStartupLaunchMessage = false;
}
;
}
Declared by:
<home-manager/modules/services/flameshot.nix>
|
services.fluidsynth.enableWhether to enable fluidsynth midi synthesizer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/fluidsynth.nix>
|
services.fluidsynth.extraOptionsExtra arguments, added verbatim to the fluidsynth command. See fluidsynth.conf(1).
Type: list of string
Default:
[
]
Example:
[
"--sample-rate 96000"
]
Declared by:
<home-manager/modules/services/fluidsynth.nix>
|
services.fluidsynth.soundFontThe soundfont file to use, in SoundFont 2 format.
Type: path
Default: "\${pkgs.soundfont-fluid}/share/soundfonts/FluidR3_GM2-2.sf2"
Declared by:
<home-manager/modules/services/fluidsynth.nix>
|
services.fluidsynth.soundServiceThe systemd sound service to depend on.
Type: one of "jack", "pipewire-pulse", "pulseaudio"
Default: "pulseaudio"
Example: "pipewire-pulse"
Declared by:
<home-manager/modules/services/fluidsynth.nix>
|
services.fnott.enableWhether to enable fnott, a lightweight Wayland notification daemon for wlroots-based compositors .
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/fnott.nix>
|
services.fnott.packagePackage providing fnott.
Type: package
Default: pkgs.fnott
Declared by:
<home-manager/modules/services/fnott.nix>
|
services.fnott.configFilePath to the configuration file read by fnott.
Note that environment variables in the path won't be properly expanded.
The configuration specified under
services.fnott.settings will be generated and
written to $XDG_CONFIG_HOME/fnott/fnott.ini
regardless of this option. This allows using a mutable configuration file
generated from the immutable one, useful in scenarios where live reloading is desired.
Type: string or path
Default: "$XDG_CONFIG_HOME/fnott/fnott.ini"
Declared by:
<home-manager/modules/services/fnott.nix>
|
services.fnott.extraFlagsExtra arguments to use for executing fnott.
Type: list of string
Default:
[
]
Example:
[
"-s"
]
Declared by:
<home-manager/modules/services/fnott.nix>
|
services.fnott.settingsConfiguration written to
$XDG_CONFIG_HOME/fnott/fnott.ini.
See fnott.ini(5) for a list of avaliable options and https://codeberg.org/dnkl/fnott/src/branch/master/fnott.ini for an example configuration.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
main = {
notification-margin = 5;
};
low = {
timeout = 5;
title-font = "Dina:weight=bold:slant=italic";
title-color = "ffffff";
};
}
Declared by:
<home-manager/modules/services/fnott.nix>
|
services.fusuma.enableWhether to enable the fusuma systemd service to automatically enable touchpad gesture.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/fusuma.nix>
|
services.fusuma.packagePackage providing fusuma.
Type: package
Default: pkgs.fusuma
Declared by:
<home-manager/modules/services/fusuma.nix>
|
services.fusuma.extraPackagesExtra packages needs to bring to the scope of fusuma service.
Type: list of package
Default: pkgs.coreutils
Example:
with pkgs; [ coreutils xdotool ];
Declared by:
<home-manager/modules/services/fusuma.nix>
|
services.fusuma.settingsYAML config that will override the default fusuma configuration.
Type: YAML value
Example:
{
threshold = {
swipe = 0.1;
};
interval = {
swipe = 0.7;
};
swipe = {
"3" = {
left = {
# GNOME: Switch to left workspace
command = "xdotool key ctrl+alt+Right";
};
};
};
};
Declared by:
<home-manager/modules/services/fusuma.nix>
|
services.gammastep.enableWhether to enable Gammastep.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.packageGammastep derivation to use.
Type: package
Default: pkgs.gammastep
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.dawnTimeSet the time interval of dawn manually. The times must be specified as HH:MM in 24-hour format.
Type: null or string
Default: null
Example: "6:00-7:45"
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.duskTimeSet the time interval of dusk manually. The times must be specified as HH:MM in 24-hour format.
Type: null or string
Default: null
Example: "18:35-20:15"
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.latitudeYour current latitude, between -90.0 and
90.0. Must be provided along with
longitude.
Type: null or string or floating point number
Default: null
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.longitudeYour current longitude, between -180.0 and
180.0. Must be provided along with
latitude.
Type: null or string or floating point number
Default: null
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.providerThe location provider to use for determining your location. If set to
manual you must also provide latitude/longitude.
If set to geoclue2, you must also enable the global
geoclue2 service.
Type: one of "manual", "geoclue2"
Default: "manual"
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.settingsThe configuration to pass to Gammastep. Available options for Gammastep described in gammastep(1).
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
general = {
adjustment-method = "randr";
};
randr = {
screen = 0;
};
};
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.temperature.dayColour temperature to use during the day, between
1000 and 25000 K.
Type: signed integer
Default: 5500
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.temperature.nightColour temperature to use at night, between
1000 and 25000 K.
Type: signed integer
Default: 3700
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.trayStart the gammastep-indicator tray applet.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.getmail.enableWhether to enable the getmail systemd service to automatically retrieve mail.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/getmail.nix>
|
services.getmail.frequencyThe refresh frequency. Check man systemd.time for
more information on the syntax. If you use a gpg-agent in
combination with the passwordCommand, keep the poll
frequency below the cache-ttl value (as set by the
default) to avoid pinentry asking
permanently for a password.
Type: string
Default: "*:0/5"
Example: "hourly"
Declared by:
<home-manager/modules/services/getmail.nix>
|
services.git-sync.enableWhether to enable git-sync services.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.git-sync.packagePackage containing the git-sync program.
Type: package
Default: pkgs.git-sync
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.git-sync.repositoriesThe repositories that should be synchronized.
Type: attribute set of submodule
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.git-sync.repositories.<name>.intervalThe interval, specified in seconds, at which the synchronization will be triggered even without filesystem changes.
Type: signed integer
Default: 500
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.git-sync.repositories.<name>.pathThe path at which to sync the repository
Type: path
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.git-sync.repositories.<name>.uriThe URI of the remote to be synchronized. This is only used in the event that the directory does not already exist. See https://git-scm.com/docs/git-clone#_git_urls for the supported URIs.
Type: string
Example: "git+ssh://user@example.com:/~[user]/path/to/repo.git"
Declared by:
<home-manager/modules/services/git-sync.nix>
|
services.gnome-keyring.enableWhether to enable GNOME Keyring.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/gnome-keyring.nix>
|
services.gnome-keyring.componentsThe GNOME keyring components to start. If empty then the default set of components will be started.
Type: list of one of "pkcs11", "secrets", "ssh"
Default:
[
]
Declared by:
<home-manager/modules/services/gnome-keyring.nix>
|
services.gpg-agent.enableWhether to enable GnuPG private key agent.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableBashIntegrationWhether to enable Bash integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableExtraSocketWhether to enable extra socket of the GnuPG key agent (useful for GPG Agent forwarding).
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableFishIntegrationWhether to enable Fish integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableScDaemonMake use of the scdaemon tool. This option has the effect of
enabling the ability to do smartcard operations. When
disabled, this option passes
disable-scdaemon setting to gpg-agent.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableSshSupportWhether to use the GnuPG key agent for SSH keys.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.enableZshIntegrationWhether to enable Zsh integration.
Type: boolean
Default: true
Example: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.defaultCacheTtlSet the time a cache entry is valid to the given number of seconds.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.defaultCacheTtlSshSet the time a cache entry used for SSH keys is valid to the given number of seconds.
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.extraConfigExtra configuration lines to append to the gpg-agent configuration file.
Type: strings concatenated with "\n"
Default: ""
Example:
'' allow-emacs-pinentry allow-loopback-pinentry ''
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.grabKeyboardAndMouseTell the pinentry to grab the keyboard and mouse. This
option should in general be used to avoid X-sniffing
attacks. When disabled, this option passes
no-grab setting to gpg-agent.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.maxCacheTtlSet the maximum time a cache entry is valid to n seconds. After this time a cache entry will be expired even if it has been accessed recently or has been set using gpg-preset-passphrase. The default is 2 hours (7200 seconds).
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.maxCacheTtlSshSet the maximum time a cache entry used for SSH keys is valid to n seconds. After this time a cache entry will be expired even if it has been accessed recently or has been set using gpg-preset-passphrase. The default is 2 hours (7200 seconds).
Type: null or signed integer
Default: null
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.pinentryFlavorWhich pinentry interface to use. If not
null, it sets
pinentry-program in
gpg-agent.conf. Beware that
pinentry-gnome3 may not work on non-Gnome
systems. You can fix it by adding the following to your
system configuration:
services.dbus.packages = [ pkgs.gcr ];
For this reason, the default is gtk2 for
now.
Type: null or one of "curses", "tty", "gtk2", "emacs", "gnome3", "qt"
Default: "gtk2"
Example: "gnome3"
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.sshKeysWhich GPG keys (by keygrip) to expose as SSH keys.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.gpg-agent.verboseWhether to produce verbose output.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/gpg-agent.nix>
|
services.grobi.enableWhether to enable the grobi display setup daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/grobi.nix>
|
services.grobi.executeAfterCommands to be run after an output configuration was
changed. The Nix value declared here will be translated to
JSON and written to the execute_after key
in $XDG_CONFIG_HOME/grobi.conf.
Type: list of string
Default:
[
]
Example:
[
"setxkbmap dvorak"
]
Declared by:
<home-manager/modules/services/grobi.nix>
|
services.grobi.rulesThese are the rules grobi tries to match to the current
output configuration. The rules are evaluated top to bottom,
the first matching rule is applied and processing stops. See
https://github.com/fd0/grobi/blob/master/doc/grobi.conf
for more information. The Nix value declared here will be
translated to JSON and written to the rules
key in $XDG_CONFIG_HOME/grobi.conf.
Type: list of attribute set of string or boolean or signed integer or list of string
Default:
[
]
Example:
[
{
name = "Home";
outputs_connected = [ "DP-2" ];
configure_single = "DP-2";
primary = true;
atomic = true;
execute_after = [
"${pkgs.xorg.xrandr}/bin/xrandr --dpi 96"
"${pkgs.xmonad-with-packages}/bin/xmonad --restart";
];
}
{
name = "Mobile";
outputs_disconnected = [ "DP-2" ];
configure_single = "eDP-1";
primary = true;
atomic = true;
execute_after = [
"${pkgs.xorg.xrandr}/bin/xrandr --dpi 120"
"${pkgs.xmonad-with-packages}/bin/xmonad --restart";
];
}
]
Declared by:
<home-manager/modules/services/grobi.nix>
|
services.gromit-mpx.enableWhether to enable Gromit-MPX annotation tool.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.packageThe gromit-mpx package to use.
Type: package
Default: "pkgs.gromit-mpx"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.hotKeyA keysym or raw keycode that toggles the activation state of
gromit-mpx. Set to null to disable the
hotkey in which case you'll have to activate gromit-mpx
manually using the command line.
Type: null or string or positive integer, meaning >0
Default: "F9"
Example: "Insert"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.opacityOpacity of the drawing overlay.
Type: float between 0.0 and 1.0 (inclusive)
Default:
Example:
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.toolsTool definitions for gromit-mpx to use.
Type: list of submodule
Default:
[
{
color = "red"; device = "default"; size = 5; type = "pen";
}
{
color = "blue"; device = "default"; modifiers =
[
"SHIFT"
]
; size = 5; type = "pen";
}
{
color = "yellow"; device = "default"; modifiers =
[
"CONTROL"
]
; size = 5; type = "pen";
}
{
arrowSize = 1; color = "green"; device = "default"; modifiers =
[
"2"
]
; size = 6; type = "pen";
}
{
device = "default"; modifiers =
[
"3"
]
; size = 75; type = "eraser";
}
]
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.arrowSizeIf not null, automatically draw an arrow
at the end of a stroke with the given size.
Type: null or positive integer, meaning >0
Default: null
Example: 2
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.colorThe stroke (or recolor) color of the tool.
Type: string
Default: "red"
Example: "#ff00ff"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.deviceUse this tool with the given xinput device. The device with the name default works with any input.
Type: string
Example: "default"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.modifiersOnly activate this tool if the given modifiers are also active.
Type: list of one of "1", "2", "3", "4", "5", "SHIFT", "CONTROL", "ALT", "META"
Default:
[
]
Example:
[
"SHIFT"
]
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.sizeThe tool size.
Type: positive integer, meaning >0
Default: 5
Example: 3
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.tools.*.typeWhich type of tool this is.
Type: one of "pen", "eraser", "recolor"
Default: "pen"
Example: "eraser"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.gromit-mpx.undoKeyA keysym or raw keycode that causes gromit-mpx to undo the
last stroke. Use this key along with the shift key to redo an
undone stoke. Set to null to disable the
undo hotkey.
Type: null or string or positive integer, meaning >0
Default: "F10"
Declared by:
<home-manager/modules/services/gromit-mpx.nix>
|
services.home-manager.autoUpgrade.enableWhether to enable the Home Manager upgrade service that periodically updates your Nix
channels before running home-manager switch.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/home-manager-auto-upgrade.nix>
|
services.home-manager.autoUpgrade.frequencyThe interval at which the Home Manager auto upgrade is run.
This value is passed to the systemd timer configuration
as the OnCalendar option.
The format is described in
systemd.time(7).
Type: string
Example: "weekly"
Declared by:
<home-manager/modules/services/home-manager-auto-upgrade.nix>
|
services.hound.enableWhether to enable hound.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/hound.nix>
|
services.hound.databasePathThe Hound database path.
Type: path
Default: "$XDG_DATA_HOME/hound"
Declared by:
<home-manager/modules/services/hound.nix>
|
services.hound.listenAddressListen address of the Hound daemon.
Type: string
Default: "localhost:6080"
Declared by:
<home-manager/modules/services/hound.nix>
|
services.hound.maxConcurrentIndexersLimit the amount of concurrent indexers.
Type: positive integer, meaning >0
Default: 2
Declared by:
<home-manager/modules/services/hound.nix>
|
services.hound.repositoriesThe repository configuration.
Type: attribute set of JSON value
Default:
{
}
Example:
{
SomeGitRepo = {
url = "https://www.github.com/YourOrganization/RepoOne.git";
ms-between-poll = 10000;
exclude-dot-files = true;
};
}
Declared by:
<home-manager/modules/services/hound.nix>
|
services.imapnotify.enableWhether to enable imapnotify.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/imapnotify.nix>
|
services.kanshi.enableWhether to enable kanshi, a Wayland daemon that automatically configures outputs.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.packagekanshi derivation to use.
Type: package
Default: pkgs.kanshi
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.extraConfigExtra configuration lines to append to the kanshi configuration file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profilesList of profiles.
Type: attribute set of submodule
Default:
{
}
Example:
undocked = {
outputs = [
{
criteria = "eDP-1";
}
];
};
docked = {
outputs = [
{
criteria = "eDP-1";
}
{
criteria = "Some Company ASDF 4242";
transform = "90";
}
];
};
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.execCommands executed after the profile is succesfully applied. Note that if you provide multiple commands, they will be executed asynchronously with no guaranteed ordering.
Type: list of string or string convertible to it
Default:
[
]
Example: "[ \${pkg.sway}/bin/swaymsg workspace 1, move workspace to eDP-1 ]"
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputsOutputs configuration.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.criteriaThe criteria can either be an output name, an output description or "*".
The latter can be used to match any output.
On
sway(1),
output names and descriptions can be obtained via
swaymsg -t get_outputs.
Type: string
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.mode<width>x<height>[@<rate>[Hz]]
Configures the specified output to use the specified mode. Modes are a combination of width and height (in pixels) and a refresh rate (in Hz) that your display can be configured to use.
Type: null or string
Default: null
Example: "1920x1080@60Hz"
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.position<x>,<y>
Places the output at the specified position in the global coordinates space.
Type: null or string
Default: null
Example: "1600,0"
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.scaleScales the output by the specified scale factor.
Type: null or floating point number
Default: null
Example: 2
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.statusEnables or disables the specified output.
Type: null or one of "enable", "disable"
Default: null
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.profiles.<name>.outputs.*.transformSets the output transform.
Type: null or one of "normal", "90", "180", "270", "flipped", "flipped-90", "flipped-180", "flipped-270"
Default: null
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kanshi.systemdTargetSystemd target to bind to.
Type: string
Default: "sway-session.target"
Declared by:
<home-manager/modules/services/kanshi.nix>
|
services.kbfs.enableWhether to enable Keybase File System.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/kbfs.nix>
|
services.kbfs.extraFlagsAdditional flags to pass to the Keybase filesystem on launch.
Type: list of string
Default:
[
]
Example:
[
"-label kbfs" "-mount-type normal"
]
Declared by:
<home-manager/modules/services/kbfs.nix>
|
services.kbfs.mountPointMount point for the Keybase filesystem, relative to
HOME.
Type: string
Default: "keybase"
Declared by:
<home-manager/modules/services/kbfs.nix>
|
services.kdeconnect.enableWhether to enable KDE connect.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/kdeconnect.nix>
|
services.kdeconnect.indicatorWhether to enable kdeconnect-indicator service.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/kdeconnect.nix>
|
services.keepassx.enableWhether to enable the KeePassX password manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/keepassx.nix>
|
services.keybase.enableWhether to enable Keybase.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/keybase.nix>
|
services.keynav.enableWhether to enable keynav.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/keynav.nix>
|
services.lieer.enableWhether to enable lieer Gmail synchronization service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/lieer.nix>
|
services.lorri.enableWhether to enable lorri build daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/lorri.nix>
|
services.lorri.packageWhich lorri package to install.
Type: package
Default: pkgs.lorri
Declared by:
<home-manager/modules/services/lorri.nix>
|
services.mbsync.enableWhether to enable mbsync.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.packageThe package to use for the mbsync binary.
Type: package
Default: pkgs.isync
Example: pkgs.isync
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.configFileOptional configuration file to link to use instead of
the default file (~/.mbsyncrc).
Type: null or path
Default: null
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.frequencyHow often to run mbsync. This value is passed to the systemd timer configuration as the onCalendar option. See systemd.time(7) for more information about the format.
Type: string
Default: "*:0/5"
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.postExecAn optional command to run after mbsync executes successfully. This is useful for running mailbox indexing tools.
Type: null or string
Default: null
Example: "\${pkgs.mu}/bin/mu index"
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.preExecAn optional command to run before mbsync executes. This is useful for creating the directories mbsync is going to use.
Type: null or string
Default: null
Example: "mkdir -p %h/mail"
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mbsync.verboseWhether mbsync should produce verbose output.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/mbsync.nix>
|
services.mopidy.enableWhether to enable Mopidy music player daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mopidy.nix>
|
services.mopidy.extensionPackagesMopidy extensions that should be loaded by the service.
Type: list of package
Default:
[
]
Example: with pkgs; [ mopidy-spotify mopidy-mpd mopidy-mpris ]
Declared by:
<home-manager/modules/services/mopidy.nix>
|
services.mopidy.extraConfigFilesExtra configuration files read by Mopidy when the service starts. Later files in the list override earlier configuration files and structured settings.
Type: list of path
Default:
[
]
Declared by:
<home-manager/modules/services/mopidy.nix>
|
services.mopidy.settingsConfiguration written to
$XDG_CONFIG_HOME/mopidy/mopidy.conf.
See https://docs.mopidy.com/en/latest/config/ for more details.
Type: attribute set of attribute set of Mopidy config value
Default:
{
}
Example:
{
file = {
media_dirs = [
"$XDG_MUSIC_DIR|Music"
"~/library|Library"
];
follow_symlinks = true;
excluded_file_extensions = [
".html"
".zip"
".jpg"
".jpeg"
".png"
];
};
# Please don't put your mopidy-spotify configuration in the public. :)
# Think of your Spotify Premium subscription!
spotify = {
client_id = "CLIENT_ID";
client_secret = "CLIENT_SECRET";
};
}
Declared by:
<home-manager/modules/services/mopidy.nix>
|
services.mpd.enableWhether to enable MPD, the music player daemon.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.packageThe MPD package to run.
Type: package
Default: "pkgs.mpd"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.dataDirThe directory where MPD stores its state, tag cache, playlists etc.
Type: path
Default: "$XDG_DATA_HOME/mpd"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.dbFileThe path to MPD's database. If set to
null the parameter is omitted from the
configuration.
Type: null or string
Default: "\${dataDir}/tag_cache"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.extraConfigExtra directives added to to the end of MPD's configuration
file, mpd.conf. Basic configuration
like file location and uid/gid is added automatically to the
beginning of the file. For available options see
mpd.conf(5).
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.musicDirectoryThe directory where mpd reads music from.
Type: path or string
Default: "$HOME/music"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.network.listenAddressThe address for the daemon to listen on.
Use any to listen on all addresses.
Type: string
Default: "127.0.0.1"
Example: "any"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.network.portThe TCP port on which the the daemon will listen.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: 6600
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.network.startWhenNeededEnable systemd socket activation.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd.playlistDirectoryThe directory where mpd stores playlists.
Type: path
Default: "\${dataDir}/playlists"
Declared by:
<home-manager/modules/services/mpd.nix>
|
services.mpd-discord-rpc.enableWhether to enable the mpd-discord-rpc service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mpd-discord-rpc.nix>
|
services.mpd-discord-rpc.packagempd-discord-rpc package to use.
Type: package
Default: pkgs.mpd-discord-rpc
Declared by:
<home-manager/modules/services/mpd-discord-rpc.nix>
|
services.mpd-discord-rpc.settingsConfiguration included in config.toml.
For available options see https://github.com/JakeStanger/mpd-discord-rpc#configuration
Type: TOML value
Default:
{
}
Example:
{
hosts = [ "localhost:6600" ];
format = {
details = "$title";
state = "On $album by $artist";
};
}
Declared by:
<home-manager/modules/services/mpd-discord-rpc.nix>
|
services.mpdris2.enableWhether to enable mpDris2 the MPD to MPRIS2 bridge.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.packageThe mpDris2 package to use.
Type: package
Default: pkgs.mpdris2
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.mpd.hostThe address where MPD is listening for connections.
Type: string
Default: "config.services.mpd.network.listenAddress"
Example: "192.168.1.1"
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.mpd.musicDirectoryIf set, mpDris2 will use this directory to access music artwork.
Type: null or path
Default: "config.services.mpd.musicDirectory"
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.mpd.passwordThe password to connect to MPD.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.mpd.portThe port number where MPD is listening for connections.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: "config.services.mpd.network.port"
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.multimediaKeysWhether to enable multimedia key support.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpdris2.notificationsWhether to enable song change notifications.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mpdris2.nix>
|
services.mpris-proxy.enableWhether to enable a proxy forwarding Bluetooth MIDI controls via MPRIS2 to control media players.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/mpris-proxy.nix>
|
services.muchsync.remotesMuchsync remotes to synchronise with.
Type: attribute set of submodule
Default:
{
}
Example:
{
server = {
frequency = "*:0/10";
remote.host = "server.tld";
};
}
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.frequencyHow often to run muchsync. This
value is passed to the systemd timer configuration as the
OnCalendar option. See
systemd.time(7)
for more information about the format.
Type: string
Default: "*:0/5"
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.local.checkForModifiedFilesCheck for locally modified files. Without this option, muchsync assumes that files in a maildir are never edited.
checkForModifiedFiles disables certain
optimizations so as to make muchsync at least check the timestamp on
every file, which will detect modified files at the cost of a longer
startup time.
This option is useful if your software regularly modifies the contents of mail files (e.g., because you are running offlineimap with "synclabels = yes").
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.local.importNewWhether to begin the synchronisation by running notmuch new locally.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.remote.checkForModifiedFilesCheck for modified files on the remote side. Without this option, muchsync assumes that files in a maildir are never edited.
checkForModifiedFiles disables certain
optimizations so as to make muchsync at least check the timestamp on
every file, which will detect modified files at the cost of a longer
startup time.
This option is useful if your software regularly modifies the contents of mail files (e.g., because you are running offlineimap with "synclabels = yes").
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.remote.hostRemote SSH host to synchronize with.
Type: string
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.remote.importNewWhether to begin the synchronisation by running notmuch new on the remote side.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.remote.muchsyncPathSpecifies the path to muchsync on the server. Ordinarily, muchsync should be in the default PATH on the server so this option is not required. However, this option is useful if you have to install muchsync in a non-standard place or wish to test development versions of the code.
Type: string
Default: "$PATH/muchsync"
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.sshCommandSpecifies a command line to pass to /bin/sh to execute a command on another machine.
Note that because this string is passed to the shell, special characters including spaces may need to be escaped.
Type: string
Default: "ssh -CTaxq"
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.muchsync.remotes.<name>.uploadWhether to propagate local changes to the remote.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/muchsync.nix>
|
services.network-manager-applet.enableWhether to enable the Network Manager applet.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/network-manager-applet.nix>
|
services.nextcloud-client.enableWhether to enable Nextcloud Client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/nextcloud-client.nix>
|
services.nextcloud-client.packageThe package to use for the nextcloud client binary.
Type: package
Default: pkgs.nextcloud-client
Declared by:
<home-manager/modules/services/nextcloud-client.nix>
|
services.nextcloud-client.startInBackgroundWhether to start the Nextcloud client in the background.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/nextcloud-client.nix>
|
services.notify-osd.enableWhether to enable notify-osd.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/notify-osd.nix>
|
services.notify-osd.packagePackage containing the notify-osd program.
Type: package
Default: pkgs.notify-osd
Declared by:
<home-manager/modules/services/notify-osd.nix>
|
services.opensnitch-ui.enableWhether to enable Opensnitch client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/opensnitch-ui.nix>
|
services.owncloud-client.enableWhether to enable Owncloud Client.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/owncloud-client.nix>
|
services.pantalaimon.enableWhether to enable Pantalaimon, an E2EE aware proxy daemon for matrix clients.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pantalaimon.nix>
|
services.pantalaimon.packagePackage providing the pantalaimon executable to use.
Type: package
Default: pkgs.pantalaimon
Declared by:
<home-manager/modules/services/pantalaimon.nix>
|
services.pantalaimon.settingsConfiguration written to
$XDG_CONFIG_HOME/pantalaimon/pantalaimon.conf.
See https://github.com/matrix-org/pantalaimon/blob/master/docs/manpantalaimon.5.md or pantalaimon(5) for options.
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default: { }
Example:
{
Default = {
LogLevel = "Debug";
SSL = true;
};
local-matrix = {
Homeserver = "https://matrix.org";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
};
}
Declared by:
<home-manager/modules/services/pantalaimon.nix>
|
services.parcellite.enableWhether to enable Parcellite.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/parcellite.nix>
|
services.parcellite.packageParcellite derivation to use.
Type: package
Default: pkgs.parcellite
Example: pkgs.clipit
Declared by:
<home-manager/modules/services/parcellite.nix>
|
services.pass-secret-service.enableWhether to enable Pass libsecret service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pass-secret-service.nix>
|
services.password-store-sync.enableWhether to enable Password store periodic sync.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/password-store-sync.nix>
|
services.password-store-sync.frequencyHow often to synchronise the password store git repository with its default upstream.
This value is passed to the systemd timer configuration as the
onCalendar option.
See
systemd.time(7)
for more information about the format.
Type: string
Default: "*:0/5"
Declared by:
<home-manager/modules/services/password-store-sync.nix>
|
services.pasystray.enableWhether to enable PulseAudio system tray.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pasystray.nix>
|
services.pbgopy.enableWhether to enable pbgopy.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pbgopy.nix>
|
services.pbgopy.cache.ttlThe TTL for the cache. Use "0s" to disable it.
Type: string
Default: "24h"
Example: "10m"
Declared by:
<home-manager/modules/services/pbgopy.nix>
|
services.pbgopy.httpAuthBasic HTTP authentication's username and password. Both the username and password are escaped.
Type: null or string
Default: null
Example: "user:pass"
Declared by:
<home-manager/modules/services/pbgopy.nix>
|
services.pbgopy.portThe port to host the pbgopy server on.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: 9090
Example: 8080
Declared by:
<home-manager/modules/services/pbgopy.nix>
|
services.picom.enableWhether to enable Picom X11 compositor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.packagePicom derivation to use.
Type: package
Default: pkgs.picom
Example: pkgs.picom
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.activeOpacityOpacity of active windows.
Type: a floating point number in range [0, 1]
Default:
Example:
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.backendBackend to use: glx, xrender or xr_glx_hybrid.
Type: one of "glx", "xrender", "xr_glx_hybrid"
Default: "xrender"
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.experimentalBackendsWhether to enable the new experimental backends.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.fadeFade windows in and out.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.fadeDeltaTime between fade animation step (in ms).
Type: positive integer, meaning >0
Default: 10
Example: 5
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.fadeExcludeList of conditions of windows that should not be faded.
See picom(1) man page for more examples.
Type: list of string
Default:
[
]
Example:
[
"window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1"
]
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.fadeStepsOpacity change between fade steps (in and out).
Type: pair of a floating point number in range [0.01, 1]
Default:
[
]
Example:
[
]
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.inactiveOpacityOpacity of inactive windows.
Type: a floating point number in range [0.1, 1]
Default:
Example:
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.menuOpacityOpacity of dropdown and popup menu.
Type: a floating point number in range [0, 1]
Default:
Example:
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.opacityRulesRules that control the opacity of windows, in format PERCENT:PATTERN.
Type: list of string
Default:
[
]
Example:
[
"95:class_g = 'URxvt' && !_NET_WM_STATE@:32a" "0:_NET_WM_STATE@:32a *= '_NET_WM_STATE_HIDDEN'"
]
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.settingsPicom settings. Use this option to configure Picom settings not exposed
in a NixOS option or to bypass one. For the available options see the
CONFIGURATION FILES section at picom(1).
Type: libconfig configuration. The format consists of an attributes set (called a group) of settings. Each setting can be a scalar type (boolean, integer, floating point number or string), a list of scalars or a group itself
Default:
{
}
Example:
blur =
{ method = "gaussian";
size = 10;
deviation = 5.0;
};
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.shadowDraw window shadows.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.shadowExcludeList of conditions of windows that should have no shadow.
See picom(1) man page for more examples.
Type: list of string
Default:
[
]
Example:
[
"window_type *= 'menu'" "name ~= 'Firefox$'" "focused = 1"
]
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.shadowOffsetsLeft and right offset for shadows (in pixels).
Type: pair of signed integer
Default:
[
-15 -15
]
Example:
[
-10 -15
]
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.shadowOpacityWindow shadows opacity.
Type: a floating point number in range [0, 1]
Default:
Example:
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.vSyncEnable vertical synchronization.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/picom.nix>
|
services.picom.wintypesRules for specific window types.
Type: attribute set
Default:
{
popup_menu = { opacity = config.services.picom.menuOpacity; };
dropdown_menu = { opacity = config.services.picom.menuOpacity; };
}
Example:
{
}
Declared by:
<home-manager/modules/services/picom.nix>
|
services.plan9port.fontsrv.enableWhether to enable the Plan 9 file system access to host fonts.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/plan9port.nix>
|
services.plan9port.plumber.enableWhether to enable the Plan 9 file system for interprocess messaging.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/plan9port.nix>
|
services.playerctld.enableWhether to enable playerctld daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/playerctld.nix>
|
services.playerctld.packageThe playerctl package to use.
Type: package
Default: pkgs.playerctl
Declared by:
<home-manager/modules/services/playerctld.nix>
|
services.plex-mpv-shim.enableWhether to enable Plex mpv shim.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/plex-mpv-shim.nix>
|
services.plex-mpv-shim.packageThe package to use for the Plex mpv shim.
Type: package
Default: pkgs.plex-mpv-shim
Declared by:
<home-manager/modules/services/plex-mpv-shim.nix>
|
services.plex-mpv-shim.settingsConfiguration written to
$XDG_CONFIG_HOME/plex-mpv-shim/config.json. See
https://github.com/iwalton3/plex-mpv-shim/blob/master/README.md
for the configuration documentation.
Type: JSON value
Default:
{
}
Example:
{
adaptive_transcode = false;
allow_http = false;
always_transcode = false;
audio_ac3passthrough = false;
audio_dtspassthrough = false;
auto_play = true;
auto_transcode = true;
}
Declared by:
<home-manager/modules/services/plex-mpv-shim.nix>
|
services.polybar.enableWhether to enable Polybar status bar.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/polybar.nix>
|
services.polybar.packagePolybar package to install.
Type: package
Default: pkgs.polybar
Example:
pkgs.polybar.override {
i3GapsSupport = true;
alsaSupport = true;
iwSupport = true;
githubSupport = true;
}
Declared by:
<home-manager/modules/services/polybar.nix>
|
services.polybar.configPolybar configuration. Can be either path to a file, or set of attributes
that will be used to create the final configuration.
See also services.polybar.settings for a more nix-friendly format.
Type: attribute set of attribute set of string or boolean or signed integer or list of string or path convertible to it
Default:
{
}
Example:
{
"bar/top" = {
monitor = "\${env:MONITOR:eDP1}";
width = "100%";
height = "3%";
radius = 0;
modules-center = "date";
};
"module/date" = {
type = "internal/date";
internal = 5;
date = "%d.%m.%y";
time = "%H:%M";
label = "%time% %date%";
};
}
Declared by:
<home-manager/modules/services/polybar.nix>
|
services.polybar.extraConfigAdditional configuration to add.
Type: strings concatenated with "\n"
Default: ""
Example:
''
[module/date]
type = internal/date
interval = 5
date = "%d.%m.%y"
time = %H:%M
format-prefix-foreground = \''${colors.foreground-alt}
label = %time% %date%
''Declared by:
<home-manager/modules/services/polybar.nix>
|
services.polybar.scriptThis script will be used to start the polybars.
Set all necessary environment variables here and start all bars.
It can be assumed that polybar executable is in the PATH.
Note, this script must start all bars in the background and then terminate.
Type: strings concatenated with "\n"
Example: "polybar bar &"
Declared by:
<home-manager/modules/services/polybar.nix>
|
services.polybar.settingsPolybar configuration. This takes a nix attrset and converts it to the
strange data format that polybar uses.
Each entry will be converted to a section in the output file.
Several things are treated specially: nested keys are converted
to dash-separated keys; the special text key is ignored as a nested key,
to allow mixing different levels of nesting; and lists are converted to
polybar's foo-0, foo-1, ... format.
For example:
"module/volume" = {
type = "internal/pulseaudio";
format.volume = "<ramp-volume> <label-volume>";
label.muted.text = "🔇";
label.muted.foreground = "#666";
ramp.volume = ["🔈" "🔉" "🔊"];
click.right = "pavucontrol &";
}
becomes:
[module/volume] type=internal/pulseaudio format-volume=<ramp-volume> <label-volume> label-muted=🔇 label-muted-foreground=#666 ramp-volume-0=🔈 ramp-volume-1=🔉 ramp-volume-2=🔊 click-right=pavucontrol &
Type: attribute set of attribute sets
Default:
{
}
Example:
{
"module/volume" = {
type = "internal/pulseaudio";
format.volume = "<ramp-volume> <label-volume>";
label.muted.text = "🔇";
label.muted.foreground = "#666";
ramp.volume = ["🔈" "🔉" "🔊"];
click.right = "pavucontrol &";
};
}
Declared by:
<home-manager/modules/services/polybar.nix>
|
services.poweralertd.enableWhether to enable the Upower-powered power alerterd.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/poweralertd.nix>
|
services.pueue.enableWhether to enable Pueue, CLI process scheduler and manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pueue.nix>
|
services.pueue.packageThe pueue package to use.
Type: package
Default: pkgs.pueue
Declared by:
<home-manager/modules/services/pueue.nix>
|
services.pueue.settingsConfiguration written to
$XDG_CONFIG_HOME/pueue/pueue.yml.
Type: YAML value
Default:
{
}
Example:
{
daemon = {
default_parallel_tasks = 2;
};
}
Declared by:
<home-manager/modules/services/pueue.nix>
|
services.pulseeffects.enableWhether to enable Pulseeffects daemon Note, it is necessary to add
programs.dconf.enable = true;
to your system configuration for the daemon to work correctly.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/pulseeffects.nix>
|
services.pulseeffects.packagePulseeffects package to use.
Type: package
Default: pkgs.pulseeffects-legacy
Declared by:
<home-manager/modules/services/pulseeffects.nix>
|
services.pulseeffects.presetWhich preset to use when starting pulseeffects. Will likely need to launch pulseeffects to initially create preset.
Type: string
Default: ""
Declared by:
<home-manager/modules/services/pulseeffects.nix>
|
services.random-background.enableWhether to enable random desktop background.
Note, if you are using NixOS and have set up a custom
desktop manager session for Home Manager, then the session
configuration must have the bgSupport
option set to true or the background
image set by this module may be overwritten.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/random-background.nix>
|
services.random-background.enableXineramaWill place a separate image per screen when enabled, otherwise a single image will be stretched across all screens.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/random-background.nix>
|
services.random-background.displayDisplay background images according to this option.
Type: one of "center", "fill", "max", "scale", "tile"
Default: "fill"
Declared by:
<home-manager/modules/services/random-background.nix>
|
services.random-background.imageDirectoryThe directory of images from which a background should be chosen. Should be formatted in a way understood by systemd, e.g., '%h' is the home directory.
Type: string
Example: "%h/backgrounds"
Declared by:
<home-manager/modules/services/random-background.nix>
|
services.random-background.intervalThe duration between changing background image, set to null to only set background when logging in. Should be formatted as a duration understood by systemd.
Type: null or string
Default: null
Example: "1h"
Declared by:
<home-manager/modules/services/random-background.nix>
|
services.recoll.enableWhether to enable Recoll file index service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/recoll.nix>
|
services.recoll.packagePackage providing the recoll binary.
Type: package
Default: pkgs.recoll
Example: (pkgs.recoll.override { withGui = false; })
Declared by:
<home-manager/modules/services/recoll.nix>
|
services.recoll.configDirThe directory to contain Recoll configuration files. This will be set
as RECOLL_CONFDIR.
Type: string
Default: ${config.home.homeDirectory}/.recoll
Example: ${config.xdg.configHome}/recoll
Declared by:
<home-manager/modules/services/recoll.nix>
|
services.recoll.settingsThe configuration to be written at
${config.services.recoll.configDir}/recoll.conf.
See
recoll(5) for more details about the configuration.
Type: attribute set of Recoll config value
Default:
{
}
Example:
{
nocjk = true;
loglevel = 5;
topdirs = [ "~/Downloads" "~/Documents" "~/projects" ];
"~/Downloads" = {
"skippedNames+" = [ "*.iso" ];
};
"~/projects" = {
"skippedNames+" = [ "node_modules" "target" "result" ];
};
}
Declared by:
<home-manager/modules/services/recoll.nix>
|
services.recoll.startAtWhen or how often the periodic update should run. Must be the format described from systemd.time(7).
Type: string
Default: "hourly"
Example: "00/2:00"
Declared by:
<home-manager/modules/services/recoll.nix>
|
services.redshift.enableWhether to enable Redshift.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.packageRedshift derivation to use.
Type: package
Default: pkgs.redshift
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.dawnTimeSet the time interval of dawn manually. The times must be specified as HH:MM in 24-hour format.
Type: null or string
Default: null
Example: "6:00-7:45"
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.duskTimeSet the time interval of dusk manually. The times must be specified as HH:MM in 24-hour format.
Type: null or string
Default: null
Example: "18:35-20:15"
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.latitudeYour current latitude, between -90.0 and
90.0. Must be provided along with
longitude.
Type: null or string or floating point number
Default: null
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.longitudeYour current longitude, between -180.0 and
180.0. Must be provided along with
latitude.
Type: null or string or floating point number
Default: null
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.providerThe location provider to use for determining your location. If set to
manual you must also provide latitude/longitude.
If set to geoclue2, you must also enable the global
geoclue2 service.
Type: one of "manual", "geoclue2"
Default: "manual"
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.settingsThe configuration to pass to Redshift. Available options for Redshift described in redshift(1).
Type: attribute set of attribute set of INI atom (null, bool, int, float or string)
Default:
{
}
Example:
{
redshift = {
adjustment-method = "randr";
};
randr = {
screen = 0;
};
};
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.temperature.dayColour temperature to use during the day, between
1000 and 25000 K.
Type: signed integer
Default: 5500
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.temperature.nightColour temperature to use at night, between
1000 and 25000 K.
Type: signed integer
Default: 3700
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.redshift.trayStart the redshift-gtk tray applet.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/redshift.nix>
|
services.rsibreak.enableWhether to enable rsibreak.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/rsibreak.nix>
|
services.screen-locker.enableWhether to enable screen locker for X session.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.inactiveIntervalInactive time interval in minutes after which session will be locked.
The minimum is 1 minute, and the maximum is 1 hour.
If xautolock.enable is true, it will use this setting.
See https://linux.die.net/man/1/xautolock.
Otherwise, this will be used with xset to configure
the X server's screensaver timeout.
Type: signed integer
Default: 10
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.lockCmdLocker command to run.
Type: string
Example: "\${pkgs.i3lock}/bin/i3lock -n -c 000000"
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xautolock.enableUse xautolock for time-based locking.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xautolock.packagePackage providing the xautolock binary.
Type: package
Default: (build of xautolock-2.2-7-ga23dd5c)
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xautolock.detectSleepWhether to reset xautolock timers when awaking from sleep.
No effect if xautolock.enable is false.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xautolock.extraOptionsExtra command-line arguments to pass to xautolock.
No effect if xautolock.enable is false.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xss-lock.packagePackage providing the xss-lock binary.
Type: package
Default: (build of xss-lock-unstable-2018-05-31)
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xss-lock.extraOptionsExtra command-line arguments to pass to xss-lock.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.screen-locker.xss-lock.screensaverCycleX server's screensaver cycle value expresed as seconds. This will be used with xset to configure the cycle along with timeout.
Type: signed integer
Default: 600
Declared by:
<home-manager/modules/services/screen-locker.nix>
|
services.sctd.enableWhether to enable sctd.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/sctd.nix>
|
services.sctd.baseTemperatureThe base color temperature used by sctd, which should be between 2500 and 9000. See sctd(1) for more details.
Type: integer between 2500 and 9000 (both inclusive)
Default: 4500
Declared by:
<home-manager/modules/services/sctd.nix>
|
services.spotifyd.enableWhether to enable SpotifyD connect.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/spotifyd.nix>
|
services.spotifyd.packageThe spotifyd package to use.
Can be used to specify extensions.
Type: package
Default: pkgs.spotifyd
Example: (pkgs.spotifyd.override { withKeyring = true; })
Declared by:
<home-manager/modules/services/spotifyd.nix>
|
services.spotifyd.settingsConfiguration for spotifyd
Type: TOML value
Default:
{
}
Example:
{
global = {
username = "Alex";
password = "foo";
device_name = "nix";
};
}
Declared by:
<home-manager/modules/services/spotifyd.nix>
|
services.stalonetray.enableWhether to enable Stalonetray system tray.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/stalonetray.nix>
|
services.stalonetray.packageThe package to use for the Stalonetray binary.
Type: package
Default: pkgs.stalonetray
Example: pkgs.stalonetray
Declared by:
<home-manager/modules/services/stalonetray.nix>
|
services.stalonetray.configStalonetray configuration as a set of attributes.
Type: attribute set of null or string or boolean or signed integer
Default:
{
}
Example:
{
background = "#cccccc"; decorations = null; geometry = "3x1-600+0"; icon_size = 30; sticky = true;
}
Declared by:
<home-manager/modules/services/stalonetray.nix>
|
services.stalonetray.extraConfigAdditional configuration lines for stalonetrayrc.
Type: strings concatenated with "\n"
Default: ""
Example:
'' geometry 3x1-600+0 decorations none icon_size 30 sticky true background "#cccccc" ''
Declared by:
<home-manager/modules/services/stalonetray.nix>
|
services.status-notifier-watcher.enableWhether to enable Status Notifier Watcher.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/status-notifier-watcher.nix>
|
services.status-notifier-watcher.packageThe package to use for the status notifier watcher binary.
Type: package
Default: pkgs.haskellPackages.status-notifier-item
Example: pkgs.haskellPackages.status-notifier-item
Declared by:
<home-manager/modules/services/status-notifier-watcher.nix>
|
services.swayidle.enableWhether to enable idle manager for Wayland.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.packageSwayidle package to install.
Type: package
Default: pkgs.swayidle
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.eventsRun command on occurence of a event.
Type: list of submodule
Default:
[
]
Example:
[
{ event = "before-sleep"; command = "swaylock"; }
{ event = "lock"; command = "lock"; }
]
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.events.*.commandCommand to run when event occurs.
Type: string
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.events.*.eventEvent name.
Type: one of "before-sleep", "after-resume", "lock", "unlock"
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.extraArgsExtra arguments to pass to swayidle.
Type: list of string
Default:
[
]
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.systemdTargetSystemd target to bind to.
Type: string
Default: "sway-session.target"
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.timeoutsList of commands to run after idle timeout.
Type: list of submodule
Default:
[
]
Example:
[
{ timeout = 60; command = "swaylock -fF"; }
]
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.timeouts.*.commandCommand to run after timeout seconds of inactivity.
Type: string
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.timeouts.*.resumeCommandCommand to run when there is activity again.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.swayidle.timeouts.*.timeoutTimeout in seconds.
Type: positive integer, meaning >0
Example: 60
Declared by:
<home-manager/modules/services/swayidle.nix>
|
services.sxhkd.enableWhether to enable simple X hotkey daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/sxhkd.nix>
|
services.sxhkd.packagePackage containing the sxhkd executable.
Type: package
Default: "pkgs.sxhkd"
Declared by:
<home-manager/modules/services/sxhkd.nix>
|
services.sxhkd.extraConfigAdditional configuration to add.
Type: strings concatenated with "\n"
Default: ""
Example:
super + {_,shift +} {1-9,0}
i3-msg {workspace,move container to workspace} {1-10}
Declared by:
<home-manager/modules/services/sxhkd.nix>
|
services.sxhkd.extraOptionsCommand line arguments to invoke sxhkd with.
Type: list of string
Default:
[
]
Example: [ "-m 1" ]
Declared by:
<home-manager/modules/services/sxhkd.nix>
|
services.sxhkd.keybindingsAn attribute set that assigns hotkeys to commands.
Type: attribute set of null or string
Default:
{
}
Example:
{
"super + shift + {r,c}" = "i3-msg {restart,reload}";
"super + {s,w}" = "i3-msg {stacking,tabbed}";
}
Declared by:
<home-manager/modules/services/sxhkd.nix>
|
services.syncthing.enableWhether to enable Syncthing continuous file synchronization.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/syncthing.nix>
|
services.syncthing.extraOptionsExtra command-line arguments to pass to syncthing.
Type: list of string
Default:
[
]
Example:
[
"--gui-apikey=apiKey"
]
Declared by:
<home-manager/modules/services/syncthing.nix>
|
services.syncthing.traySyncthing tray service configuration.
Type: boolean or submodule
Default:
{
enable = false;
}
Declared by:
<home-manager/modules/services/syncthing.nix>
|
services.systembus-notify.enableWhether to enable systembus-notify - system bus notification daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/systembus-notify.nix>
|
services.taffybar.enableWhether to enable Taffybar.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/taffybar.nix>
|
services.taffybar.packageThe package to use for the Taffybar binary.
Type: package
Default: pkgs.taffybar
Example: pkgs.taffybar
Declared by:
<home-manager/modules/services/taffybar.nix>
|
services.tahoe-lafs.enableWhether to enable Tahoe-LAFS.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/tahoe-lafs.nix>
|
services.taskwarrior-sync.enableWhether to enable Taskwarrior periodic sync.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/taskwarrior-sync.nix>
|
services.taskwarrior-sync.frequencyHow often to run taskwarrior sync. This
value is passed to the systemd timer configuration as the
OnCalendar option. See
systemd.time(7)
for more information about the format.
Type: string
Default: "*:0/5"
Declared by:
<home-manager/modules/services/taskwarrior-sync.nix>
|
services.trayer.enableWhether to enable trayer, the lightweight GTK2+ systray for UNIX desktops.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/trayer.nix>
|
services.trayer.packageThe package to use for the trayer binary.
Type: package
Default: pkgs.trayer
Example: pkgs.trayer
Declared by:
<home-manager/modules/services/trayer.nix>
|
services.trayer.settingsTrayer configuration as a set of attributes. Further details can be found at https://github.com/sargon/trayer-srg.
| Property Name | Type | Values | Default |
|---|---|---|---|
SetDockType | boolean | true|false | true |
SetPartialStrut | boolean | true|false | true |
align | string | left|right|center | center |
alpha | signed integer | number | 127 |
distance | signed integer | number | 0 |
distancefrom | string | left|right|top|bottom | top |
edge | string | left|right|top|bottom|none | bottom |
expand | boolean | true|false | true |
height | signed integer | number | 26 |
heighttype | string | request|pixel | pixel |
iconspacing | signed integer | number | 0 |
margin | signed integer | number | 0 |
monitor | string | number|primary | 0 |
padding | signed integer | number | 0 |
tint | string | int | 0xFFFFFFFF |
transparent | boolean | true|false | false |
width | signed integer | number | 100 |
widthtype | string | request|pixel|percent | percent |
Type: attribute set of null or string or boolean or signed integer
Default:
{
}
Example:
{
edge = "top";
padding = 6;
SetDockType = true;
tint = "0x282c34";
}
Declared by:
<home-manager/modules/services/trayer.nix>
|
services.twmn.enableWhether to enable twmn, a tiling window manager notification daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.durationThe time each notification remains visible, in milliseconds.
Type: unsigned integer, meaning >=0
Default: 3000
Example: 5000
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.extraConfigExtra configuration options to add to the twmnd config file. See https://github.com/sboli/twmn/blob/master/README.md for details.
Type: attribute set
Default:
{
}
Example: { main.activation_command = "\${pkgs.hello}/bin/hello"; }
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.hostHost address to listen on for notifications.
Type: string
Default: "127.0.0.1"
Example: "laptop.lan"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.icons.criticalPath to the critical notifications' icon.
Type: null or path
Default: null
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.icons.infoPath to the informative notifications' icon.
Type: null or path
Default: null
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.icons.warningPath to the warning notifications' icon.
Type: null or path
Default: null
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.portUDP port to listen on for notifications.
Type: 16 bit unsigned integer; between 0 and 65535 (both inclusive)
Default: 9797
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.screenScreen number to display notifications on when using a multi-head desktop.
Type: null or signed integer
Default: null
Example: 0
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.soundCommandCommand to execute to play a notification's sound.
Type: string
Default: ""
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.colorNotification's text color. RGB hex and keywords (e.g. lightgray)
are supported.
Type: string
Default: "#999999"
Example: "lightgray"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.font.packageNotification text's font package. If null then
the font is assumed to already be available in your profile.
Type: null or package
Default: null
Example: pkgs.dejavu_fonts
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.font.familyNotification text's font family.
Type: string
Default: "Sans"
Example: "Noto Sans"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.font.sizeNotification text's font size.
Type: unsigned integer, meaning >=0
Default: 13
Example: 42
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.font.variantNotification text's font variant.
Type: one of "oblique", "italic", "ultra-light", "light", "medium", "semi-bold", "bold", "ultra-bold", "heavy", "ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"
Default: "medium"
Example: "heavy"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.text.maxLengthMaximum length of the text before it is cut and suffixed with "...".
Never cuts if null.
Type: null or unsigned integer, meaning >=0
Default: null
Example: 80
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.alwaysOnTopWhether to enable forcing the notification window to always be on top.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.bounce.enableWhether to enable notification bounce when displaying next notification directly..
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.bounce.durationThe bounce animation duration in milliseconds.
Type: unsigned integer, meaning >=0
Default: 500
Example: 618
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeInOptions for the notification appearance's animation.
Type: submodule
Default:
{
}
Example:
{
curve = 19;
duration = 618;
}
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeIn.curveThe qt easing-curve animation to use for the animation. See QEasingCurve documentation.
Type: integer between 0 and 40 (both inclusive)
Default: 38
Example: 19
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeIn.durationThe animation duration in milliseconds.
Type: unsigned integer, meaning >=0
Default: 1000
Example: 618
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeOutOptions for the notification disappearance's animation.
Type: submodule
Default:
{
}
Example:
{
curve = 19;
duration = 618;
}
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeOut.curveThe qt easing-curve animation to use for the animation. See QEasingCurve documentation.
Type: integer between 0 and 40 (both inclusive)
Default: 38
Example: 19
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.animation.easeOut.durationThe animation duration in milliseconds.
Type: unsigned integer, meaning >=0
Default: 1000
Example: 618
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.colorNotification's background color. RGB hex and keywords (e.g.
lightgray) are supported.
Type: string
Default: "#000000"
Example: "lightgray"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.heightHeight of the slide bar. Useful to match your tiling window manager's bar.
Type: unsigned integer, meaning >=0
Default: 18
Example: 42
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.offset.xOffset of the notification's slide starting point in pixels on the horizontal axis (positive is rightward).
Type: signed integer
Default: 0
Example: 50
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.offset.yOffset of the notification's slide starting point in pixels on the vertical axis (positive is upward).
Type: signed integer
Default: 0
Example: -100
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.opacityThe notification window's opacity.
Type: integer between 0 and 100 (both inclusive)
Default: 100
Example: 80
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.twmn.window.positionPosition of the notification slide. The notification will slide
in vertically from the border if placed in
top_center or bottom_center,
horizontally otherwise.
Type: one of "tr", "top_right", "tl", "top_left", "br", "bottom_right", "bl", "bottom_left", "tc", "top_center", "bc", "bottom_center", "c", "center"
Default: "top_right"
Example: "bottom_left"
Declared by:
<home-manager/modules/services/twmn.nix>
|
services.udiskie.enableWhether to enable udiskie mount daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/udiskie.nix>
|
services.udiskie.automountWhether to automatically mount new devices.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/udiskie.nix>
|
services.udiskie.notifyWhether to show pop-up notifications.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/udiskie.nix>
|
services.udiskie.settingsConfiguration written to
$XDG_CONFIG_HOME/udiskie/config.yml.
See https://github.com/coldfix/udiskie/blob/master/doc/udiskie.8.txt#configuration for the full list of options.
Type: YAML value
Default:
{
}
Example:
{
program_options = {
udisks_version = 2;
tray = true;
};
icon_names.media = [ "media-optical" ];
}
Declared by:
<home-manager/modules/services/udiskie.nix>
|
services.udiskie.trayWhether to display tray icon.
The options are
alwaysAlways show tray icon.
autoShow tray icon only when there is a device available.
neverNever show tray icon.
Type: one of "always", "auto", "never"
Default: "auto"
Declared by:
<home-manager/modules/services/udiskie.nix>
|
services.unclutter.enableWhether to enable unclutter.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/unclutter.nix>
|
services.unclutter.packageunclutter derivation to use.
Type: package
Default: pkgs.unclutter-xfixes
Declared by:
<home-manager/modules/services/unclutter.nix>
|
services.unclutter.extraOptionsMore arguments to pass to the unclutter command.
Type: list of string
Default:
[
]
Example:
[
"exclude-root" "ignore-scrolling"
]
Declared by:
<home-manager/modules/services/unclutter.nix>
|
services.unclutter.thresholdMinimum number of pixels considered cursor movement.
Type: signed integer
Default: 1
Declared by:
<home-manager/modules/services/unclutter.nix>
|
services.unclutter.timeoutNumber of seconds before the cursor is marked inactive.
Type: signed integer
Default: 1
Declared by:
<home-manager/modules/services/unclutter.nix>
|
services.unison.enableWhether to enable Unison synchronisation.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/unison.nix>
|
services.unison.pairsUnison root pairs to keep synchronised.
Type: attribute set of submodule
Default:
{
}
Example:
{
"my-documents" = {
roots = [
"/home/user/documents"
"ssh://remote/documents"
];
};
}
Declared by:
<home-manager/modules/services/unison.nix>
|
services.unison.pairs.<name>.commandOptionsAdditional command line options as a dictionary to pass to the
unison program.
See unison(1) for a list of available options.
Type: attribute set of string
Default:
{
auto = "true"; batch = "true"; log = "false"; repeat = "watch"; sshcmd = "\${pkgs.openssh}/bin/ssh"; ui = "text";
}
Declared by:
<home-manager/modules/services/unison.nix>
|
services.unison.pairs.<name>.rootsPair of roots to synchronise.
Type: list of string of length 2
Example:
[ "/home/user/documents" "ssh://remote/documents" ]
Declared by:
<home-manager/modules/services/unison.nix>
|
services.unison.pairs.<name>.stateDirectoryUnison state directory to use.
Type: path
Default: "$XDG_DATA_HOME/unison"
Declared by:
<home-manager/modules/services/unison.nix>
|
services.volnoti.enableWhether to enable Volnoti volume HUD daemon.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/volnoti.nix>
|
services.volnoti.packagePackage containing the volnoti program.
Type: package
Default: pkgs.volnoti
Declared by:
<home-manager/modules/services/volnoti.nix>
|
services.wlsunset.enableWhether to enable wlsunset.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.packagewlsunset derivation to use.
Type: package
Default: "pkgs.wlsunset"
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.gammaGamma value to use.
Type: string
Default: "1.0"
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.latitudeYour current latitude, between -90.0 and
90.0.
Type: string
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.longitudeYour current longitude, between -180.0 and
180.0.
Type: string
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.systemdTargetSystemd target to bind to.
Type: string
Default: "graphical-session.target"
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.temperature.dayColour temperature to use during the day, in Kelvin (K).
This value must be greater than temperature.night.
Type: signed integer
Default: 6500
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.wlsunset.temperature.nightColour temperature to use during the night, in Kelvin (K).
This value must be smaller than temperature.day.
Type: signed integer
Default: 4000
Declared by:
<home-manager/modules/services/wlsunset.nix>
|
services.xcape.enableWhether to enable xcape.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xcape.nix>
|
services.xcape.mapExpressionThe value has the grammar Key[|OtherKey].
The list of key names is found in the header file
X11/keysymdef.h (remove the
XK_ prefix). Note that due to limitations
of X11 shifted keys must be specified as a shift key
followed by the key to be pressed rather than the actual
name of the character. For example to generate "{" the
expression Shift_L|bracketleft could be
used (assuming that you have a key with "{" above "[").
You can also specify keys in decimal (prefix #), octal (#0), or hexadecimal (#0x). They will be interpreted as keycodes unless no corresponding key name is found.
Type: attribute set of string
Default:
{
}
Example:
{
Control_L = "Control_L|O"; Shift_L = "Escape";
}
Declared by:
<home-manager/modules/services/xcape.nix>
|
services.xcape.timeoutIf you hold a key longer than this timeout, xcape will not generate a key event. Default is 500 ms.
Type: null or signed integer
Default: null
Example: 500
Declared by:
<home-manager/modules/services/xcape.nix>
|
services.xembed-sni-proxy.enableWhether to enable XEmbed SNI Proxy.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xembed-sni-proxy.nix>
|
services.xembed-sni-proxy.packagePackage containing the xembedsniproxy program.
Type: package
Default: pkgs.plasma-workspace
Declared by:
<home-manager/modules/services/xembed-sni-proxy.nix>
|
services.xidlehook.enableWhether to enable xidlehook systemd service.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.packageThe package to use for xidlehook.
Type: package
Default: "pkgs.xidlehook"
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.detect-sleepWhether to enable detecting when the system wakes up from a suspended state and resetting the idle timer.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.environmentExtra environment variables to be exported in the script.
These options are passed unescaped as export name=value.
Type: attribute set of string
Default:
{
}
Example:
{
"primary-display" = "$(xrandr | awk '/ primary/{print $1}')";
}
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.not-when-audioDisable locking when audio is playing.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.not-when-fullscreenDisable locking when a fullscreen application is in use.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.onceWhether to enable running the program once and exiting.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.timersA set of commands to be executed after a specific idle timeout.
The commands specified in command and canceller
are passed escaped to the script.
To use or re-use environment variables that are script-dependent, specify them
in the environment section.
Type: list of submodule
Default:
[
]
Example:
[
{
delay = 60;
command = "xrandr --output \"$PRIMARY_DISPLAY\" --brightness .1";
canceller = "xrandr --output \"$PRIMARY_DISPLAY\" --brightness 1";
}
{
delay = 120;
command = "${pkgs.writeShellScript "my-script" ''
# A complex script to run
''}";
}
]
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.timers.*.cancellerCommand executed when the user becomes active again. This is only executed if the next timer has not been reached. Path to executables are accepted. The command is automatically escaped.
Type: string
Default: ""
Example:
${pkgs.libnotify}/bin/notify-send "Idle" "Resuming activity"
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.timers.*.commandCommand executed after the idle timeout is reached. Path to executables are accepted. The command is automatically escaped.
Type: null or string
Example:
${pkgs.libnotify}/bin/notify-send "Idle" "Sleeping in 1 minute"
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xidlehook.timers.*.delayTime before executing the command.
Type: unsigned integer, meaning >=0
Example: 60
Declared by:
<home-manager/modules/services/xidlehook.nix>
|
services.xscreensaver.enableWhether to enable XScreenSaver.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xscreensaver.nix>
|
services.xscreensaver.settingsThe settings to use for XScreenSaver.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
fadeTicks = 20; lock = false; mode = "blank";
}
Declared by:
<home-manager/modules/services/xscreensaver.nix>
|
services.xsettingsd.enableWhether to enable xsettingsd.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xsettingsd.nix>
|
services.xsettingsd.packagePackage containing the xsettingsd program.
Type: package
Default: pkgs.xsettingsd
Declared by:
<home-manager/modules/services/xsettingsd.nix>
|
services.xsettingsd.settingsXsettingsd options for configuration file. See https://github.com/derat/xsettingsd/wiki/Settings for documentation on these values.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
"Net/ThemeName" = "Numix";
"Xft/Antialias" = true;
"Xft/Hinting" = true;
"Xft/RGBA" = "rgb";
}
Declared by:
<home-manager/modules/services/xsettingsd.nix>
|
services.xsuspender.enableWhether to enable XSuspender.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.debugWhether to enable debug output.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaultsXSuspender defaults.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.autoSuspendOnBatteryWhether to auto-apply rules when switching to battery power even if the window(s) didn't just lose focus.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.downclockOnBatteryLimit CPU consumption for this factor when on battery power. Value 1 means 50% decrease, 2 means 66%, 3 means 75% etc.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.execResumeBefore resuming, execute this shell script. Resume the process regardless script failure.
Type: null or string
Default: null
Example: "echo resuming ..."
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.execSuspendBefore suspending, execute this shell script. If it fails, abort suspension.
Type: null or string
Default: null
Example: ''echo "suspending window $XID of process $PID"''
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.matchWmClassContainsMatch windows that wm class contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.matchWmClassGroupContainsMatch windows where wm class group contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.matchWmNameContainsMatch windows where wm name contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.onlyOnBatteryWhether to enable process suspend only on battery.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.resumeEveryResume interval in seconds.
Type: signed integer
Default: 50
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.resumeForResume duration in seconds.
Type: signed integer
Default: 5
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.sendSignalsWhether to send SIGSTOP / SIGCONT signals or not. If false just the exec scripts are run.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.suspendDelayInitial suspend delay in seconds.
Type: signed integer
Default: 5
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.defaults.suspendSubtreePatternAlso suspend descendant processes that match this regex.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rulesAttribute set of XSuspender rules.
Type: attribute set of submodule
Default:
{
}
Example:
{
Chromium =
{
matchWmClassContains = "chromium-browser"; suspendDelay = 10; suspendSubtreePattern = "chromium";
}
;
}
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.autoSuspendOnBatteryWhether to auto-apply rules when switching to battery power even if the window(s) didn't just lose focus.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.downclockOnBatteryLimit CPU consumption for this factor when on battery power. Value 1 means 50% decrease, 2 means 66%, 3 means 75% etc.
Type: signed integer
Default: 0
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.execResumeBefore resuming, execute this shell script. Resume the process regardless script failure.
Type: null or string
Default: null
Example: "echo resuming ..."
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.execSuspendBefore suspending, execute this shell script. If it fails, abort suspension.
Type: null or string
Default: null
Example: ''echo "suspending window $XID of process $PID"''
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.matchWmClassContainsMatch windows that wm class contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.matchWmClassGroupContainsMatch windows where wm class group contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.matchWmNameContainsMatch windows where wm name contains string.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.onlyOnBatteryWhether to enable process suspend only on battery.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.resumeEveryResume interval in seconds.
Type: signed integer
Default: 50
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.resumeForResume duration in seconds.
Type: signed integer
Default: 5
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.sendSignalsWhether to send SIGSTOP / SIGCONT signals or not. If false just the exec scripts are run.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.suspendDelayInitial suspend delay in seconds.
Type: signed integer
Default: 5
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
services.xsuspender.rules.<name>.suspendSubtreePatternAlso suspend descendant processes that match this regex.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/xsuspender.nix>
|
specializationA set of named specialized configurations. These can be used to extend your base configuration with additional settings. For example, you can have specializations named “light” and “dark” that applies light and dark color theme configurations.
Note, this is an experimental option for now and you therefore have to activate the specialization by looking up and running the activation script yourself. Note, running the activation script will create a new Home Manager generation.
For example, to activate the “dark” specialization. You can first look up your current Home Manager generation by running
$ home-manager generations | head -1 2022-05-02 22:49 : id 1758 -> /nix/store/jy…ac-home-manager-generation
then run
$ /nix/store/jy…ac-home-manager-generation/specialization/dark/activate Starting Home Manager activation …
WARNING! Since this option is experimental, the activation process may change in backwards incompatible ways.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/misc/specialization.nix>
|
specialization.<name>.configurationArbitrary Home Manager configuration settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/misc/specialization.nix>
|
systemd.user.automountsDefinition of systemd per-user automount units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.automount(5).
Type: systemd automount unit configuration
Default:
{
}
Example:
{
automount-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Automount = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.mountsDefinition of systemd per-user mount units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.mount(5).
Type: systemd mount unit configuration
Default:
{
}
Example:
{
mount-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Mount = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.pathsDefinition of systemd per-user path units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.path(5).
Type: systemd path unit configuration
Default:
{
}
Example:
{
path-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Path = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.servicesDefinition of systemd per-user service units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.service(5).
Type: systemd service unit configuration
Default:
{
}
Example:
{
service-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Service = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.servicesStartTimeoutMsHow long to wait for started services to fail until their start is considered successful. The value 0 indicates no timeout.
Type: unsigned integer, meaning >=0
Default: 0
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.sessionVariablesEnvironment variables that will be set for the user session. The variable values must be as described in environment.d(5).
Type: attribute set of signed integer or string
Default:
{
}
Example:
{
EDITOR = "vim";
}
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.slicesDefinition of systemd per-user slices units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.slices(5).
Type: systemd slices unit configuration
Default:
{
}
Example:
{
slices-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Slices = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.socketsDefinition of systemd per-user socket units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.socket(5).
Type: systemd socket unit configuration
Default:
{
}
Example:
{
socket-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Socket = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.startServicesWhether new or changed services that are wanted by active targets should be started. Additionally, stop obsolete services from the previous generation.
The alternatives are
suggest (or false)Use a very simple shell script to print suggested systemctl commands to run. You will have to manually run those commands after the switch.
legacy (or true)Use a Ruby script to, in a more robust fashion, determine the necessary changes and automatically run the systemctl commands.
sd-switchUse sd-switch, a third party application, to perform the service updates. This tool offers more features while having a small closure size. Note, it requires a fully functional user D-Bus session. Once tested and deemed sufficiently robust, this will become the default.
Type: boolean or one of "suggest", "legacy", "sd-switch"
Default: "suggest"
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.systemctlPathAbsolute path to the systemctl tool. This option may need to be set if running Home Manager on a non-NixOS distribution.
Type: string
Default: "\${pkgs.systemd}/bin/systemctl"
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.targetsDefinition of systemd per-user target units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.target(5).
Type: systemd target unit configuration
Default:
{
}
Example:
{
target-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Target = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.timersDefinition of systemd per-user timer units. Attributes are merged recursively.
Note that the attributes follow the capitalization and naming used by systemd. More details can be found in systemd.timer(5).
Type: systemd timer unit configuration
Default:
{
}
Example:
{
timer-name = {
Unit = {
Description = "Example description";
Documentation = [ "man:example(1)" "man:example(5)" ];
};
Timer = {
…
};
};
};
Declared by:
<home-manager/modules/systemd.nix>
|
systemd.user.tmpfiles.rulesRules for creating and cleaning up temporary files automatically. See tmpfiles.d(5) for the exact format.
Type: list of string
Default:
[
]
Example:
[
"L /home/user/Documents - - - - /mnt/data/Documents"
]
Declared by:
<home-manager/modules/misc/tmpfiles.nix>
|
targets.darwin.currentHostDefaultsSet macOS user defaults. Unlike targets.darwin.defaults,
the preferences will only be applied to the currently logged-in host. This
distinction is important for networked accounts.
Values set to null are ignored.
Some settings might require a re-login to take effect.
Type: attribute set of attribute set of anything
Default:
{
}
Example:
{
com.apple.controlcenter =
{
BatteryShowPercentage = true;
}
;
}
Declared by:
<home-manager/modules/targets/darwin/user-defaults>
|
targets.darwin.currentHostDefaults.com.apple.controlcenter.BatteryShowPercentageWhether to show battery percentage in the menu bar.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-currenthost.nix>
|
targets.darwin.defaultsSet macOS user defaults. Values set to null are
ignored.
Some settings might require a re-login to take effect.
Some settings are only read from
targets.darwin.currentHostDefaults.
Type: attribute set of attribute set of anything
Default:
{
}
Example:
{
com.apple.desktopservices =
{
DSDontWriteNetworkStores = true; DSDontWriteUSBStores = true;
}
;
}
Declared by:
<home-manager/modules/targets/darwin/user-defaults>
|
targets.darwin.defaults.NSGlobalDomain.AppleLanguagesSets the language to use in the preferred order.
Type: null or list of string
Default: null
Example:
[
"en"
]
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.AppleLocaleConfigures the user locale.
Type: null or string
Default: null
Example: "en_US"
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.AppleMeasurementUnitsSets the measurement unit.
Type: null or one of "Centimeters", "Inches"
Default: null
Example: "Centimeters"
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.AppleMetricUnitsWhether to enable the metric system.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.AppleTemperatureUnitSets the temperature unit.
Type: null or one of "Celsius", "Fahrenheit"
Default: null
Example: "Celsius"
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.NSAutomaticCapitalizationEnabledWhether to enable automatic captilization.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.NSAutomaticDashSubstitutionEnabledWhether to enable smart dashes.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.NSAutomaticPeriodSubstitutionEnabledWhether to enable period with double space.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.NSAutomaticQuoteSubstitutionEnabledWhether to enable smart quotes.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.NSGlobalDomain.NSAutomaticSpellingCorrectionEnabledWhether to enable spelling correction.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.AutoFillCreditCardDataWhether to enable autofill of credit card numbers.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.AutoFillPasswordsWhether to enable autofill of usernames and passwords.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.AutoOpenSafeDownloadsWhether to enable opening of downloaded files.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.IncludeDevelopMenuWhether to enable "Develop" menu in the menu bar.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.ShowOverlayStatusBarWhether to enable status bar.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.WebKitDeveloperExtrasEnabledPreferenceKeyConfigures the web inspector.
Instead of setting this option directly, set
IncludeDevelopMenu instead.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.WebKitPreferences.developerExtrasEnabledConfigures the web inspector.
Instead of setting this option directly, set
IncludeDevelopMenu instead.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.Safari.SandboxBroker.ShowDevelopMenuShow the "Develop" menu in Safari's menubar.
Instead of setting this option directly, set
"com.apple.Safari".IncludeDevelopMenu instead.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.desktopservices.DSDontWriteNetworkStoresDisable use of .DS_Store files on network shares.
See the
official article for more info.
Type: null or boolean
Default: null
Example: false
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.desktopservices.DSDontWriteUSBStoresDisable use of .DS_Store files on thumb drives.
Type: null or boolean
Default: null
Example: false
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.dock.expose-group-appsWhether to enable grouping of windows by application in Mission Control.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.dock.size-immutableWhether to enable locking of the dock size.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.dock.tilesizeSets the size of the dock.
Type: null or signed integer
Default: null
Example: 64
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.apple.menuextra.battery.ShowPercentThis option no longer works on macOS 11 and later. Instead, use
targets.darwin.currentHostDefaults.\"com.apple.controlcenter\".BatteryShowPercentage.
Whether to show battery percentage in the menu bar.
Type: null or one of "YES", "NO"
Default: null
Example: "NO"
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.googlecode.iterm2.AddNewTabAtEndOfTabsWhether to enable placement of new tabs at the end of the tab bar.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.googlecode.iterm2.AlternateMouseScrollWhether to enable arrow keys when scrolling in alternate screen mode.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.googlecode.iterm2.CopySelectionWhether to enable copy to clipboard upon selecting text.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.googlecode.iterm2.ExperimentalKeyHandlingWhether to enable experimental key handling for AquaSKK compatibility.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.defaults.com.googlecode.iterm2.OpenTmuxWindowsInConfigures how to restore tmux windows when attaching to a session.
Possible Values
0Native windows
1Native tabs in a new window
2Tabs in the attaching window
Type: null or signed integer
Default: null
Example: 2
Declared by:
<home-manager/modules/targets/darwin/user-defaults/opts-allhosts.nix>
|
targets.darwin.keybindingsThis will configure the default keybindings for text fields in macOS applications. See Apple's documentation for more details.
Existing keybinding configuration will be wiped when using this option.
Type: attribute set of anything
Default:
{
}
Example:
{
^u = "deleteToBeginningOfLine:"; ^w = "deleteWordBackward:";
}
Declared by:
<home-manager/modules/targets/darwin/keybindings.nix>
|
targets.darwin.searchDefault search engine.
Type: null or one of "Bing", "DuckDuckGo", "Ecosia", "Google", "Yahoo"
Default: null
Declared by:
<home-manager/modules/targets/darwin/search.nix>
|
targets.genericLinux.enableWhether to enable settings that make Home Manager work better on GNU/Linux distributions other than NixOS.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/targets/generic-linux.nix>
|
wayland.windowManager.sway.enableWhether to enable sway wayland compositor.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.packageSway package to use. Will override the options
'wrapperFeatures', 'extraSessionCommands', and 'extraOptions'.
Set to null to not add any Sway package to your
path. This should be done if you want to use the NixOS Sway
module to install Sway.
Type: null or package
Default: ${pkgs.sway}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.configSway configuration options.
Type: null or submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.assignsAn attribute set that assigns applications to workspaces based on criteria.
Type: attribute set of list of attribute set of string or boolean
Default:
{
}
Example:
{
"1: web" = [{ class = "^Firefox$"; }];
"0: extra" = [{ class = "^Firefox$"; window_role = "About"; }];
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.barsSway bars settings blocks. Set to empty list to remove bars completely.
Type: list of submodule
Default: see code
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colorsBar color settings. All color classes can be specified using submodules with 'border', 'background', 'text', fields and RGB color hex-codes as values. See default values for the reference. Note that 'background', 'status', and 'separator' parameters take a single RGB value. See https://i3wm.org/docs/userguide.html#_colors.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.activeWorkspaceBorder, background and text color for a workspace button when the workspace is active.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#5f676a"; border = "#333333"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.backgroundBackground color of the bar.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#000000"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.bindingModeBorder, background and text color for the binding mode indicator
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#900000"; border = "#2f343a"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.focusedBackgroundBackground color of the bar on the currently focused monitor output.
Type: null or string
Default: null
Example: "#000000"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.focusedSeparatorText color to be used for the separator on the currently focused monitor output.
Type: null or string
Default: null
Example: "#666666"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.focusedStatuslineText color to be used for the statusline on the currently focused monitor output.
Type: null or string
Default: null
Example: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.focusedWorkspaceBorder, background and text color for a workspace button when the workspace has focus.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#285577"; border = "#4c7899"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.inactiveWorkspaceBorder, background and text color for a workspace button when the workspace does not have focus and is not active.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#222222"; border = "#333333"; text = "#888888";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.separatorText color to be used for the separator.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#666666"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.statuslineText color to be used for the statusline.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.colors.urgentWorkspaceBorder, background and text color for a workspace button when the workspace contains a window with the urgency hint set.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#900000"; border = "#2f343a"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.commandCommand that will be used to start a bar.
Type: string
Default: "i3bar"
Example: "\${pkgs.waybar}/bin/waybar"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.extraConfigExtra configuration lines for this bar.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.fontsFont configuration for this bar.
Type: list of string or submodule
Default:
{
}
Example:
{
names = [ "DejaVu Sans Mono" "FontAwesome5Free" ];
style = "Bold Semi-Condensed";
size = 11.0;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.hiddenStateThe default bar mode when 'bar.mode' == 'hide'.
Type: null or one of "hide", "show"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "hide"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.idSpecifies the bar ID for the configured bar instance. If this option is missing, the ID is set to bar-x, where x corresponds to the position of the embedding bar block in the config file.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.modeBar visibility mode.
Type: null or one of "dock", "hide", "invisible"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "dock"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.positionThe edge of the screen swaybar should show up.
Type: null or one of "top", "bottom"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "bottom"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.statusCommandCommand that will be used to get status lines.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "\${pkgs.i3status}/bin/i3status"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.trayOutputWhere to output tray.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "primary"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.workspaceButtonsWhether workspace buttons should be shown or not.
Type: null or boolean
Default:
null for state version ≥ 20.09, as example otherwise
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bars.*.workspaceNumbersWhether workspace numbers should be displayed within the workspace buttons.
Type: null or boolean
Default:
null for state version ≥ 20.09, as example otherwise
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.bindkeysToCodeWhether to make use of --to-code in keybindings.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colorsColor settings. All color classes can be specified using submodules with 'border', 'background', 'text', 'indicator' and 'childBorder' fields and RGB color hex-codes as values. See default values for the reference. Note that 'sway.config.colors.background' parameter takes a single RGB value. See https://i3wm.org/docs/userguide.html#_changing_colors.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.backgroundBackground color of the window. Only applications which do not cover the whole area expose the color.
Type: string
Default: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.focusedA window which currently has the focus.
Type: submodule
Default:
{
background = "#285577"; border = "#4c7899"; childBorder = "#285577"; indicator = "#2e9ef4"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.focusedInactiveA window which is the focused one of its container, but it does not have the focus at the moment.
Type: submodule
Default:
{
background = "#5f676a"; border = "#333333"; childBorder = "#5f676a"; indicator = "#484e50"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.placeholderBackground and text color are used to draw placeholder window contents (when restoring layouts). Border and indicator are ignored.
Type: submodule
Default:
{
background = "#0c0c0c"; border = "#000000"; childBorder = "#0c0c0c"; indicator = "#000000"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.unfocusedA window which is not focused.
Type: submodule
Default:
{
background = "#222222"; border = "#333333"; childBorder = "#222222"; indicator = "#292d2e"; text = "#888888";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.colors.urgentA window which has its urgency hint activated.
Type: submodule
Default:
{
background = "#900000"; border = "#2f343a"; childBorder = "#900000"; indicator = "#900000"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.defaultWorkspaceThe default workspace to show when sway is launched. This must to correspond to the value of the keybinding of the default workspace.
Type: null or string
Default: null
Example: "workspace number 9"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.downHome row direction key for moving down.
Type: string
Default: "j"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.floatingFloating window settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.floating.borderFloating windows border width.
Type: signed integer
Default: 2
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.floating.criteriaList of criteria for windows that should be opened in a floating mode.
Type: list of attribute set of string or boolean
Default:
[
]
Example:
[
{
title = "Steam - Update News";
}
{
class = "Pavucontrol";
}
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.floating.modifierModifier key that can be used to drag floating windows.
Type: one of "Shift", "Control", "Mod1", "Mod2", "Mod3", "Mod4", "Mod5"
Default: "sway.config.modifier"
Example: "Mod4"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.floating.titlebarWhether to show floating window titlebars.
Type: boolean
Default: "false"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.focusFocus related settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.focus.followMouseWhether focus should follow the mouse.
Type: one of "yes", "no", "always" or boolean
Default: "yes"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.focus.forceWrappingWhether to force focus wrapping in tabbed or stacked container. See https://i3wm.org/docs/userguide.html#_focus_wrapping
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.focus.mouseWarpingWhether mouse cursor should be warped to the center of the window when switching focus to a window on a different output.
Type: boolean or one of "container", "output"
Default: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.focus.newWindowThis option modifies focus behavior on new window activation. See https://i3wm.org/docs/userguide.html#focus_on_window_activation
Type: one of "smart", "urgent", "focus", "none"
Default: "smart"
Example: "none"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.fontsFont configuration for window titles, nagbar...
Type: list of string or submodule
Default:
{
}
Example:
{
names = [ "DejaVu Sans Mono" "FontAwesome5Free" ];
style = "Bold Semi-Condensed";
size = 11.0;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gapsGaps related settings.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.bottomBottom gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.horizontalHorizontal gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.innerInner gaps value.
Type: null or signed integer
Default: null
Example: 12
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.leftLeft gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.outerOuter gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.rightRight gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.smartBordersThis option controls whether to disable container borders on workspace with a single container.
Type: one of "on", "off", "no_gaps"
Default: "off"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.smartGapsThis option controls whether to disable all gaps (outer and inner) on workspace with a single container.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.topTop gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.gaps.verticalVertical gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.inputAn attribute set that defines input modules. See sway-input(5) for options.
Type: attribute set of attribute set of string
Default:
{
}
Example:
{
* =
{
xkb_variant = "dvorak";
}
;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.keybindingsAn attribute set that assigns a key press to an action using a key symbol. See https://i3wm.org/docs/userguide.html#keybindings.
Consider to use lib.mkOptionDefault function to extend or override
default keybindings instead of specifying all of them from scratch.
Type: attribute set of null or string
Default: "Default sway keybindings."
Example:
let
modifier = config.wayland.windowManager.sway.config.modifier;
in lib.mkOptionDefault {
"${modifier}+Return" = "exec ${pkgs.rxvt-unicode-unwrapped}/bin/urxvt";
"${modifier}+Shift+q" = "kill";
"${modifier}+d" = "exec ${pkgs.dmenu}/bin/dmenu_path | ${pkgs.dmenu}/bin/dmenu | ${pkgs.findutils}/bin/xargs swaymsg exec --";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.keycodebindingsAn attribute set that assigns keypress to an action using key code. See https://i3wm.org/docs/userguide.html#keybindings.
Type: attribute set of null or string
Default:
{
}
Example:
{
214 = "exec /bin/script.sh";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.leftHome row direction key for moving left.
Type: string
Default: "h"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.menuDefault launcher to use.
Type: string
Default: "\${pkgs.dmenu}/bin/dmenu_path | \${pkgs.dmenu}/bin/dmenu | \${pkgs.findutils}/bin/xargs swaymsg exec --"
Example: "bemenu-run"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.modesAn attribute set that defines binding modes and keybindings inside them Only basic keybinding is supported (bindsym keycomb action), for more advanced setup use 'sway.extraConfig'.
Type: attribute set of attribute set of string
Default:
{
resize =
{
Down = "resize grow height 10 px"; Escape = "mode default"; Left = "resize shrink width 10 px"; Return = "mode default"; Right = "resize grow width 10 px"; Up = "resize shrink height 10 px"; h = "resize shrink width 10 px"; j = "resize grow height 10 px"; k = "resize shrink height 10 px"; l = "resize grow width 10 px";
}
;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.modifierModifier key that is used for all default keybindings.
Type: one of "Shift", "Control", "Mod1", "Mod2", "Mod3", "Mod4", "Mod5"
Default: "Mod1"
Example: "Mod4"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.outputAn attribute set that defines output modules. See sway-output(5) for options.
Type: attribute set of attribute set of string
Default:
{
}
Example:
{
HDMI-A-2 =
{
bg = "~/path/to/background.png fill";
}
;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.rightHome row direction key for moving right.
Type: string
Default: "l"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.seatAn attribute set that defines seat modules. See sway-input(5) for options.
Type: attribute set of attribute set of string
Default:
{
}
Example:
{
* =
{
hide_cursor = "when-typing enable";
}
;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.startupCommands that should be executed at startup. See https://i3wm.org/docs/userguide.html#_automatically_starting_applications_on_i3_startup.
Type: list of submodule
Default:
[
]
Example:
[
{ command = "systemctl --user restart waybar"; always = true; }
{ command = "dropbox start"; }
{ command = "firefox"; }
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.startup.*.alwaysWhether to run command on each sway restart.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.startup.*.commandCommand that will be executed on startup.
Type: string
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.terminalDefault terminal to run.
Type: string
Default: "\${pkgs.rxvt-unicode-unwrapped}/bin/urxvt"
Example: "alacritty"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.upHome row direction key for moving up.
Type: string
Default: "k"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.windowWindow titlebar and border settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.borderWindow border width.
Type: signed integer
Default: 2
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.commandsList of commands that should be executed on specific windows.
See for_window swaywm option documentation.
Type: list of submodule
Default:
[
]
Example:
[
{
command = "border pixel 1"; criteria =
{
class = "XTerm";
}
;
}
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.commands.*.commandSwaywm command to execute.
Type: string
Example: "border pixel 1"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.commands.*.criteriaCriteria of the windows on which command should be executed.
A value of true is equivalent to using an empty
criteria (which is different from an empty string criteria).
Type: attribute set of string or boolean
Example:
{
title = "x200: ~/work";
floating = true;
};
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.hideEdgeBordersHide window borders adjacent to the screen edges.
Type: one of "none", "vertical", "horizontal", "both", "smart"
Default: "none"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.window.titlebarWhether to show window titlebars.
Type: boolean
Default: "false"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.workspaceAutoBackAndForthAssume you are on workspace "1: www" and switch to "2: IM" using mod+2 because somebody sent you a message. You don’t need to remember where you came from now, you can just press $mod+2 again to switch back to "1: www".
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.workspaceLayoutThe mode in which new containers on workspace level will start.
Type: one of "default", "stacking", "tabbed"
Default: "default"
Example: "tabbed"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.workspaceOutputAssignAssign workspaces to outputs.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.workspaceOutputAssign.*.outputName of the output from swaymsg -t get_outputs .
Type: string
Default: ""
Example: "eDP"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.config.workspaceOutputAssign.*.workspaceName of the workspace to assign.
Type: string
Default: ""
Example: "Web"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.extraConfigExtra configuration lines to add to ~/.config/sway/config.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.extraConfigEarlyLike extraConfig, except lines are added to ~/.config/sway/config before all other configuration.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.extraOptionsCommand line arguments passed to launch Sway. Please DO NOT report issues if you use an unsupported GPU (proprietary drivers).
Type: list of string
Default:
[
]
Example:
[
"--verbose" "--debug" "--unsupported-gpu" "--my-next-gpu-wont-be-nvidia"
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.extraSessionCommandsShell commands executed just before Sway is started.
Type: strings concatenated with "\n"
Default: ""
Example:
'' export SDL_VIDEODRIVER=wayland # needs qt5.qtwayland in systemPackages export QT_QPA_PLATFORM=wayland export QT_WAYLAND_DISABLE_WINDOWDECORATION="1" # Fix for some Java AWT applications (e.g. Android Studio), # use this if they aren't displayed properly: export _JAVA_AWT_WM_NONREPARENTING=1 ''
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.swaynag.enableWhether to enable configuration of swaynag, a lightweight error bar for sway.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/swaynag.nix>
|
wayland.windowManager.sway.swaynag.settingsConfiguration written to
$XDG_CONFIG_HOME/swaynag/config.
See
swaynag(5)
for a list of avaliable options and an example configuration.
Note, configurations declared under <config>
will override the default type values of swaynag.
Type: attribute set of attribute set of Swaynag config atom (null, bool, int, float, str)
Default:
{
}
Example:
{
"<config>" = {
edge = "bottom";
font = "Dina 12";
};
green = {
edge = "top";
background = "00AA00";
text = "FFFFFF";
button-background = "00CC00";
message-padding = 10;
};
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/swaynag.nix>
|
wayland.windowManager.sway.systemdIntegrationWhether to enable sway-session.target on
sway startup. This links to
graphical-session.target.
Some important environment variables will be imported to systemd
and dbus user environment before reaching the target, including
DISPLAY
WAYLAND_DISPLAY
SWAYSOCK
XDG_CURRENT_DESKTOP
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.wrapperFeaturesAttribute set of features to enable in the wrapper.
Type: submodule
Default:
{
}
Example:
{
gtk = true;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.wrapperFeatures.baseWhether to make use of the base wrapper to execute extra session commands and prepend a dbus-run-session to the sway command.
Type: boolean
Default: true
Example: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.wrapperFeatures.gtkWhether to make use of the wrapGAppsHook wrapper to execute sway with required environment variables for GTK applications.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
wayland.windowManager.sway.xwaylandEnable xwayland, which is needed for the default configuration of sway.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/sway.nix>
|
xdg.enableWhether to enable management of XDG base directories.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.cacheHomeAbsolute path to directory holding application caches.
Type: path
Default: "~/.cache"
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFileAttribute set of files to link into the user's XDG configuration home.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.executableSet the execute bit. If null, defaults to the mode
of the source file or to false
for files created through the text option.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.onChangeShell commands to run when file has changed between generations. The script will be run after the new files have been linked into place.
Note, this code is always run when recursive is
enabled.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.recursiveIf the file source is a directory, then this option determines whether the directory should be recursively linked to the target location. This option has no effect if the source is a file.
If false (the default) then the target
will be a symbolic link to the source directory. If
true then the target will be a
directory structure matching the source's but whose leafs
are symbolic links to the files of the source directory.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.sourcePath of the source file or directory. If
home.file.<name>.text
is non-null then this option will automatically point to a file
containing that text.
Type: path
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.targetPath to target file relative to xdg.configHome.
Type: string
Default: <name>
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configFile.<name>.textText of the file. If this option is null then
home.file.<name>.source
must be set.
Type: null or strings concatenated with "\n"
Default: null
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.configHomeAbsolute path to directory holding application configurations.
Type: path
Default: "~/.config"
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFileAttribute set of files to link into the user's XDG data home.
Type: attribute set of submodule
Default:
{
}
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.executableSet the execute bit. If null, defaults to the mode
of the source file or to false
for files created through the text option.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.onChangeShell commands to run when file has changed between generations. The script will be run after the new files have been linked into place.
Note, this code is always run when recursive is
enabled.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.recursiveIf the file source is a directory, then this option determines whether the directory should be recursively linked to the target location. This option has no effect if the source is a file.
If false (the default) then the target
will be a symbolic link to the source directory. If
true then the target will be a
directory structure matching the source's but whose leafs
are symbolic links to the files of the source directory.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.sourcePath of the source file or directory. If
home.file.<name>.text
is non-null then this option will automatically point to a file
containing that text.
Type: path
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.targetPath to target file relative to xdg.dataHome.
Type: string
Default: <name>
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataFile.<name>.textText of the file. If this option is null then
home.file.<name>.source
must be set.
Type: null or strings concatenated with "\n"
Default: null
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.dataHomeAbsolute path to directory holding application data.
Type: path
Default: "~/.local/share"
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.desktopEntriesDesktop Entries allow applications to be shown in your desktop environment's app launcher.
You can define entries for programs without entries or override existing entries.
See https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html#recognized-keys for more information on options.
Type: attribute set of submodule
Default:
{
}
Example:
{
firefox = {
name = "Firefox";
genericName = "Web Browser";
exec = "firefox %U";
terminal = false;
categories = [ "Application" "Network" "WebBrowser" ];
mimeType = [ "text/html" "text/xml" ];
};
}
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.actionsThe set of actions made available to application launchers.
Type: attribute set of submodule
Default: { }
Example:
{
"New Window" = {
exec = "${pkgs.firefox}/bin/firefox --new-window %u";
};
}
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.actions.<name>.execProgram to execute, possibly with arguments.
Type: null or string
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.actions.<name>.iconIcon to display in file manager, menus, etc.
Type: null or string or path
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.actions.<name>.nameName of the action.
Type: string
Default: <name>
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.categoriesCategories in which the entry should be shown in a menu.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.commentTooltip for the entry.
Type: null or string
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.execProgram to execute, possibly with arguments.
Type: null or string
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.genericNameGeneric name of the application.
Type: null or string
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.iconIcon to display in file manager, menus, etc.
Type: null or string or path
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.mimeTypeThe MIME type(s) supported by this application.
Type: null or list of string
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.nameSpecific name of the application.
Type: string
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.noDisplayMeans "this application exists, but don't display it in the menus". This can be useful to e.g. associate this application with MIME types.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.prefersNonDefaultGPUIf true, the application prefers to be run on a more powerful discrete GPU if available.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.settingsExtra key-value pairs to add to the [Desktop Entry] section.
This may override other values.
Type: attribute set of Concatenated string
Default:
{
}
Example:
{
Keywords = "calc;math";
DBusActivatable = "false";
}
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.startupNotifyIf true, it is KNOWN that the application will send a "remove"
message when started with the DESKTOP_STARTUP_ID
environment variable set. If false, it is KNOWN that the application
does not work with startup notification at all.
Type: null or boolean
Default: null
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.terminalWhether the program runs in a terminal window.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.desktopEntries.<name>.typeThe type of the desktop entry.
Type: one of "Application", "Link", "Directory"
Default: "Application"
Declared by:
<home-manager/modules/misc/xdg-desktop-entries.nix>
|
xdg.mime.enableWhether to install programs and files to support the XDG Shared MIME-info specification and XDG MIME Applications specification at https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html and https://specifications.freedesktop.org/mime-apps-spec/mime-apps-spec-latest.html, respectively.
Type: boolean
Default: true if host platform is Linux, false otherwise
Declared by:
<home-manager/modules/misc/xdg-mime.nix>
|
xdg.mimeApps.enableWhether to manage $XDG_CONFIG_HOME/mimeapps.list.
The generated file is read-only.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/xdg-mime-apps.nix>
|
xdg.mimeApps.associations.addedDefines additional associations of applications with mimetypes, as if the .desktop file was listing this mimetype in the first place.
Type: attribute set of list of string or list of string or string convertible to it
Default:
{
}
Example:
{
"mimetype1" = [ "foo1.desktop" "foo2.desktop" "foo3.desktop" ];
"mimetype2" = "foo4.desktop";
}
Declared by:
<home-manager/modules/misc/xdg-mime-apps.nix>
|
xdg.mimeApps.associations.removedRemoves associations of applications with mimetypes, as if the .desktop file was not listing this mimetype in the first place.
Type: attribute set of list of string or list of string or string convertible to it
Default:
{
}
Example:
{
mimetype1 = "foo5.desktop";
}
Declared by:
<home-manager/modules/misc/xdg-mime-apps.nix>
|
xdg.mimeApps.defaultApplicationsThe default application to be used for a given mimetype. This is, for instance, the one that will be started when double-clicking on a file in a file manager. If the application is no longer installed, the next application in the list is attempted, and so on.
Type: attribute set of list of string or list of string or string convertible to it
Default:
{
}
Example:
{
"mimetype1" = [ "default1.desktop" "default2.desktop" ];
}
Declared by:
<home-manager/modules/misc/xdg-mime-apps.nix>
|
xdg.stateHomeAbsolute path to directory holding application states.
Type: path
Default: "~/.local/state"
Declared by:
<home-manager/modules/misc/xdg.nix>
|
xdg.systemDirs.configDirectory names to add to XDG_CONFIG_DIRS
in the user session.
Type: list of string
Default:
[
]
Example: [ "/etc/xdg" ]
Declared by:
<home-manager/modules/misc/xdg-system-dirs.nix>
|
xdg.systemDirs.dataDirectory names to add to XDG_DATA_DIRS
in the user session.
Type: list of string
Default:
[
]
Example: [ "/usr/share" "/usr/local/share" ]
Declared by:
<home-manager/modules/misc/xdg-system-dirs.nix>
|
xdg.userDirs.enableWhether to manage $XDG_CONFIG_HOME/user-dirs.dirs.
The generated file is read-only.
Type: boolean
Default: false
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.createDirectoriesWhether to enable automatic creation of the XDG user directories.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.desktopThe Desktop directory.
Type: string or path convertible to it
Default: "$HOME/Desktop"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.documentsThe Documents directory.
Type: string or path convertible to it
Default: "$HOME/Documents"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.downloadThe Downloads directory.
Type: string or path convertible to it
Default: "$HOME/Downloads"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.extraConfigOther user directories.
Type: attribute set of string or path convertible to it
Default: { }
Example:
{
XDG_MISC_DIR = "$HOME/Misc";
}
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.musicThe Music directory.
Type: string or path convertible to it
Default: "$HOME/Music"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.picturesThe Pictures directory.
Type: string or path convertible to it
Default: "$HOME/Pictures"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.publicShareThe Public share directory.
Type: string or path convertible to it
Default: "$HOME/Public"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.templatesThe Templates directory.
Type: string or path convertible to it
Default: "$HOME/Templates"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xdg.userDirs.videosThe Videos directory.
Type: string or path convertible to it
Default: "$HOME/Videos"
Declared by:
<home-manager/modules/misc/xdg-user-dirs.nix>
|
xresources.extraConfigAdditional X server resources contents.
If this and all other xresources options are
null, then this feature is disabled and no
~/.Xresources link is produced.
Type: strings concatenated with "\n"
Default: ""
Example:
builtins.readFile (
pkgs.fetchFromGitHub {
owner = "solarized";
repo = "xresources";
rev = "025ceddbddf55f2eb4ab40b05889148aab9699fc";
sha256 = "0lxv37gmh38y9d3l8nbnsm1mskcv10g3i83j0kac0a2qmypv1k9f";
} + "/Xresources.dark"
)
Declared by:
<home-manager/modules/xresources.nix>
|
xresources.pathPath where Home Manager should link the .Xresources file.
Type: string
Default: "$HOME/.Xresources"
Declared by:
<home-manager/modules/xresources.nix>
|
xresources.propertiesX server resources that should be set.
Booleans are formatted as "true" or "false" respectively.
List elements are recursively formatted as a string and joined by commas.
All other values are directly formatted using builtins.toString.
Note, that 2-dimensional lists are not supported and specifying one will throw an exception.
If this and all other xresources options are
null, then this feature is disabled and no
~/.Xresources link is produced.
Type: null or attribute set of boolean or signed integer or string or list of boolean or signed integer or string
Default: null
Example:
{
"Emacs*toolBar" = 0;
"XTerm*faceName" = "dejavu sans mono";
"XTerm*charClass" = [ "37:48" "45-47:48" "58:48" "64:48" "126:48" ];
}
Declared by:
<home-manager/modules/xresources.nix>
|
xsession.enableWhether to enable X Session.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.initExtraExtra shell commands to run during initialization.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.numlock.enableWhether to enable Num Lock.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/misc/numlock.nix>
|
xsession.pointerCursor.packageAlias of home.pointerCursor.package.
Type: submodule
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
xsession.pointerCursor.defaultCursorAlias of home.pointerCursor.x11.defaultCursor.
Type: submodule
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
xsession.pointerCursor.nameAlias of home.pointerCursor.name.
Type: submodule
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
xsession.pointerCursor.sizeAlias of home.pointerCursor.size.
Type: submodule
Declared by:
<home-manager/modules/config/home-cursor.nix>
|
xsession.preferStatusNotifierItemsWhether tray applets should prefer using the Status Notifier Items (SNI) protocol, commonly called App Indicators. Note, not all tray applets or status bars support SNI.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.profileExtraExtra shell commands to run before session start.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.profilePathPath, relative to HOME, where Home Manager
should write the X profile script.
Type: string
Default: ".xprofile"
Example: ".xprofile-hm"
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.scriptPathPath, relative to HOME, where Home Manager
should write the X session script.
Type: string
Default: ".xsession"
Example: ".xsession-hm"
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.windowManager.awesome.enableWhether to enable Awesome window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/awesome.nix>
|
xsession.windowManager.awesome.packagePackage to use for running the Awesome WM.
Type: package
Default: pkgs.awesome
Declared by:
<home-manager/modules/services/window-managers/awesome.nix>
|
xsession.windowManager.awesome.luaModulesList of lua packages available for being used in the Awesome configuration.
Type: list of package
Default:
[
]
Example: [ pkgs.luaPackages.vicious ]
Declared by:
<home-manager/modules/services/window-managers/awesome.nix>
|
xsession.windowManager.awesome.noArgbDisable client transparency support, which can be greatly detrimental to performance in some setups
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/awesome.nix>
|
xsession.windowManager.bspwm.enableWhether to enable bspwm window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.packageThe bspwm package to use.
Type: package
Default: pkgs.bspwm
Example: pkgs.bspwm-unstable
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.alwaysResetDesktopsIf set to true, desktops configured in monitors will be reset
every time the config is run.
If set to false, desktops will only be configured the first time the config is run.
This is useful if you want to dynamically add desktops and you don't want them to be destroyed if you
re-run bspwmrc.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.extraConfigAdditional shell commands to be run at the end of the config file.
Type: strings concatenated with "\n"
Default: ""
Example:
'' bspc subscribe all > ~/bspc-report.log & ''
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.extraConfigEarlyLike extraConfig, except commands are run at the start of the config file.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.monitorsSpecifies the names of desktops to create on each monitor.
Type: attribute set of list of string
Default:
{
}
Example:
{
HDMI-0 =
[
"web" "terminal" "III" "IV"
]
;
}
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rulesRule configuration. The keys of the attribute set are the targets of the rules.
Type: attribute set of attribute set of boolean or signed integer or floating point number or string
Default:
{
}
Example:
{
"Gimp" = {
desktop = "^8";
state = "floating";
follow = true;
};
"Kupfer.py" = {
focus = true;
};
"Screenkey" = {
manage = false;
};
}
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.borderWhether the node should have border.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.centerWhether the node will be put in the center, in floating mode.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.desktopThe desktop where the rule should be applied.
Type: null or string
Default: null
Example: "^8"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.focusWhether the node should gain focus on creation.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.followWhether focus should follow the node when it is moved.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.hiddenWhether the node should occupy any space.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.layerThe layer where a new window should spawn.
Type: null or one of "below", "normal", "above"
Default: null
Example: "above"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.lockedWhether the node should ignore node --close messages.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.manageWhether the window should be managed by bspwm. If false, the window will be ignored by bspwm entirely. This is useful for overlay apps, e.g. screenshot tools.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.markedWhether the node will be marked for deferred actions.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.monitorThe monitor where the rule should be applied.
Type: null or string
Default: null
Example: "HDMI-0"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.nodeThe node where the rule should be applied.
Type: null or string
Default: null
Example: "1"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.privateWhether the node should stay in the same tiling position and size.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.rectangleThe node's geometry, in the format WxH+X+Y.
Type: null or string
Default: null
Example: "800x600+32+32"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.splitDirThe direction where the container is going to be split.
Type: null or one of "north", "west", "south", "east"
Default: null
Example: "south"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.splitRatioThe ratio between the new window and the previous existing window in the desktop.
Type: null or floating point number
Default: null
Example:
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.stateThe state in which a new window should spawn.
Type: null or one of "tiled", "pseudo_tiled", "floating", "fullscreen"
Default: null
Example: "floating"
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.rules.<name>.stickyWhether the node should stay on the focused desktop.
Type: null or boolean
Default: null
Example: true
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.settingsGeneral settings given to bspc config.
Type: attribute set of boolean or signed integer or floating point number or string or list of boolean or signed integer or floating point number or string
Default:
{
}
Example:
{
border_width = 2; gapless_monocle = true; split_ratio = ;
}
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.bspwm.startupProgramsPrograms to be executed during startup.
Type: list of string
Default:
[
]
Example:
[
"numlockx on" "tilda"
]
Declared by:
<home-manager/modules/services/window-managers/bspwm/default.nix>
|
xsession.windowManager.commandCommand to use to start the window manager.
The default value allows integration with NixOS' generated xserver configuration.
Extra actions and commands can be specified in xsession.initExtra.
Type: string
Default: ''test -n "$1" && eval "$@"''
Example:
let
xmonad = pkgs.xmonad-with-packages.override {
packages = self: [ self.xmonad-contrib self.taffybar ];
};
in
"${xmonad}/bin/xmonad";
Declared by:
<home-manager/modules/xsession.nix>
|
xsession.windowManager.herbstluftwm.enableWhether to enable herbstluftwm window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.packagePackage providing the herbstluftwm and herbstclient commands.
Type: package
Default: pkgs.herbstluftwm
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.extraConfigExtra configuration lines to add verbatim to
$XDG_CONFIG_HOME/herbstluftwm/autostart.
Type: strings concatenated with "\n"
Default: ""
Example:
'' herbstclient set_layout max herbstclient detect_monitors ''
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.keybindsHerbstluftwm keybinds.
Type: attribute set of string
Default:
{
}
Example:
{
Mod4-o = "split right";
Mod4-u = "split bottom";
}
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.mousebindsHerbstluftwm mousebinds.
Type: attribute set of string
Default:
{
}
Example:
{
Mod4-B1 = "move";
Mod4-B3 = "resize";
}
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.rulesHerbstluftwm rules.
Type: list of string
Default:
[
]
Example:
[ "windowtype~'_NET_WM_WINDOW_TYPE_(DIALOG|UTILITY|SPLASH)' focus=on pseudotile=on" "windowtype~'_NET_WM_WINDOW_TYPE_(NOTIFICATION|DOCK|DESKTOP)' manage=off" ]
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.settingsHerbstluftwm settings.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
gapless_grid = false;
window_border_width = 1;
window_border_active_color = "#FF0000";
}
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.herbstluftwm.tagsTags to create on startup.
Type: list of string
Default:
[
]
Example:
[ "work" "browser" "music" "gaming" ]
Declared by:
<home-manager/modules/services/window-managers/herbstluftwm.nix>
|
xsession.windowManager.i3.enableWhether to enable i3 window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.packagei3 package to use. If 'i3.config.gaps' settings are specified, 'pkgs.i3-gaps' will be set as a default package.
Type: package
Default: pkgs.i3
Example: pkgs.i3-gaps
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.configi3 configuration options.
Type: null or submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.assignsAn attribute set that assigns applications to workspaces based on criteria.
Type: attribute set of list of attribute set of string or boolean
Default:
{
}
Example:
{
"1: web" = [{ class = "^Firefox$"; }];
"0: extra" = [{ class = "^Firefox$"; window_role = "About"; }];
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.barsi3 bars settings blocks. Set to empty list to remove bars completely.
Type: list of submodule
Default: see code
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colorsBar color settings. All color classes can be specified using submodules with 'border', 'background', 'text', fields and RGB color hex-codes as values. See default values for the reference. Note that 'background', 'status', and 'separator' parameters take a single RGB value. See https://i3wm.org/docs/userguide.html#_colors.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.activeWorkspaceBorder, background and text color for a workspace button when the workspace is active.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#5f676a"; border = "#333333"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.backgroundBackground color of the bar.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#000000"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.bindingModeBorder, background and text color for the binding mode indicator
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#900000"; border = "#2f343a"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.focusedBackgroundBackground color of the bar on the currently focused monitor output.
Type: null or string
Default: null
Example: "#000000"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.focusedSeparatorText color to be used for the separator on the currently focused monitor output.
Type: null or string
Default: null
Example: "#666666"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.focusedStatuslineText color to be used for the statusline on the currently focused monitor output.
Type: null or string
Default: null
Example: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.focusedWorkspaceBorder, background and text color for a workspace button when the workspace has focus.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#285577"; border = "#4c7899"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.inactiveWorkspaceBorder, background and text color for a workspace button when the workspace does not have focus and is not active.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#222222"; border = "#333333"; text = "#888888";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.separatorText color to be used for the separator.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#666666"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.statuslineText color to be used for the statusline.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.colors.urgentWorkspaceBorder, background and text color for a workspace button when the workspace contains a window with the urgency hint set.
Type: null or submodule
Default:
null for state version ≥ 20.09, as example otherwise
Example:
{
background = "#900000"; border = "#2f343a"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.commandCommand that will be used to start a bar.
Type: string
Default: "i3bar"
Example: "\${pkgs.i3-gaps}/bin/i3bar -t"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.extraConfigExtra configuration lines for this bar.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.fontsFont configuration for this bar.
Type: list of string or submodule
Default:
{
}
Example:
{
names = [ "DejaVu Sans Mono" "FontAwesome5Free" ];
style = "Bold Semi-Condensed";
size = 11.0;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.hiddenStateThe default bar mode when 'bar.mode' == 'hide'.
Type: null or one of "hide", "show"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "hide"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.idSpecifies the bar ID for the configured bar instance. If this option is missing, the ID is set to bar-x, where x corresponds to the position of the embedding bar block in the config file.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.modeBar visibility mode.
Type: null or one of "dock", "hide", "invisible"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "dock"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.positionThe edge of the screen i3bar should show up.
Type: null or one of "top", "bottom"
Default:
null for state version ≥ 20.09, as example otherwise
Example: "bottom"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.statusCommandCommand that will be used to get status lines.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "\${pkgs.i3status}/bin/i3status"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.trayOutputWhere to output tray.
Type: null or string
Default:
null for state version ≥ 20.09, as example otherwise
Example: "primary"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.workspaceButtonsWhether workspace buttons should be shown or not.
Type: null or boolean
Default:
null for state version ≥ 20.09, as example otherwise
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.bars.*.workspaceNumbersWhether workspace numbers should be displayed within the workspace buttons.
Type: null or boolean
Default:
null for state version ≥ 20.09, as example otherwise
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colorsColor settings. All color classes can be specified using submodules with 'border', 'background', 'text', 'indicator' and 'childBorder' fields and RGB color hex-codes as values. See default values for the reference. Note that 'i3.config.colors.background' parameter takes a single RGB value. See https://i3wm.org/docs/userguide.html#_changing_colors.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.backgroundBackground color of the window. Only applications which do not cover the whole area expose the color.
Type: string
Default: "#ffffff"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.focusedA window which currently has the focus.
Type: submodule
Default:
{
background = "#285577"; border = "#4c7899"; childBorder = "#285577"; indicator = "#2e9ef4"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.focusedInactiveA window which is the focused one of its container, but it does not have the focus at the moment.
Type: submodule
Default:
{
background = "#5f676a"; border = "#333333"; childBorder = "#5f676a"; indicator = "#484e50"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.placeholderBackground and text color are used to draw placeholder window contents (when restoring layouts). Border and indicator are ignored.
Type: submodule
Default:
{
background = "#0c0c0c"; border = "#000000"; childBorder = "#0c0c0c"; indicator = "#000000"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.unfocusedA window which is not focused.
Type: submodule
Default:
{
background = "#222222"; border = "#333333"; childBorder = "#222222"; indicator = "#292d2e"; text = "#888888";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.colors.urgentA window which has its urgency hint activated.
Type: submodule
Default:
{
background = "#900000"; border = "#2f343a"; childBorder = "#900000"; indicator = "#900000"; text = "#ffffff";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.defaultWorkspaceThe default workspace to show when i3 is launched. This must to correspond to the value of the keybinding of the default workspace.
Type: null or string
Default: null
Example: "workspace number 9"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.floatingFloating window settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.floating.borderFloating windows border width.
Type: signed integer
Default: 2
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.floating.criteriaList of criteria for windows that should be opened in a floating mode.
Type: list of attribute set of string or boolean
Default:
[
]
Example:
[
{
title = "Steam - Update News";
}
{
class = "Pavucontrol";
}
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.floating.modifierModifier key that can be used to drag floating windows.
Type: one of "Shift", "Control", "Mod1", "Mod2", "Mod3", "Mod4", "Mod5"
Default: "i3.config.modifier"
Example: "Mod4"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.floating.titlebarWhether to show floating window titlebars.
Type: boolean
Default: "xsession.windowManager.i3.package != nixpkgs.i3-gaps (titlebar should be disabled for i3-gaps)"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.focusFocus related settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.focus.followMouseWhether focus should follow the mouse.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.focus.forceWrappingWhether to force focus wrapping in tabbed or stacked container. See https://i3wm.org/docs/userguide.html#_focus_wrapping
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.focus.mouseWarpingWhether mouse cursor should be warped to the center of the window when switching focus to a window on a different output.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.focus.newWindowThis option modifies focus behavior on new window activation. See https://i3wm.org/docs/userguide.html#focus_on_window_activation
Type: one of "smart", "urgent", "focus", "none"
Default: "smart"
Example: "none"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.fontsFont configuration for window titles, nagbar...
Type: list of string or submodule
Default:
{
}
Example:
{
names = [ "DejaVu Sans Mono" "FontAwesome5Free" ];
style = "Bold Semi-Condensed";
size = 11.0;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gapsi3Gaps related settings. The i3-gaps package must be used for these features to work.
Type: null or submodule
Default: null
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.bottomBottom gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.horizontalHorizontal gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.innerInner gaps value.
Type: null or signed integer
Default: null
Example: 12
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.leftLeft gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.outerOuter gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.rightRight gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.smartBordersThis option controls whether to disable container borders on workspace with a single container.
Type: one of "on", "off", "no_gaps"
Default: "off"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.smartGapsThis option controls whether to disable all gaps (outer and inner) on workspace with a single container.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.topTop gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.gaps.verticalVertical gaps value.
Type: null or signed integer
Default: null
Example: 5
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.keybindingsAn attribute set that assigns a key press to an action using a key symbol. See https://i3wm.org/docs/userguide.html#keybindings.
Consider to use lib.mkOptionDefault function to extend or override
default keybindings instead of specifying all of them from scratch.
Type: attribute set of null or string
Default: "Default i3 keybindings."
Example:
let
modifier = config.xsession.windowManager.i3.config.modifier;
in lib.mkOptionDefault {
"${modifier}+Return" = "exec i3-sensible-terminal";
"${modifier}+Shift+q" = "kill";
"${modifier}+d" = "exec \${pkgs.dmenu}/bin/dmenu_run";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.keycodebindingsAn attribute set that assigns keypress to an action using key code. See https://i3wm.org/docs/userguide.html#keybindings.
Type: attribute set of null or string
Default:
{
}
Example:
{
214 = "exec /bin/script.sh";
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.menuDefault launcher to use.
Type: string
Default: "\${pkgs.dmenu}/bin/dmenu_run"
Example: "bemenu-run"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.modesAn attribute set that defines binding modes and keybindings inside them Only basic keybinding is supported (bindsym keycomb action), for more advanced setup use 'i3.extraConfig'.
Type: attribute set of attribute set of string
Default:
{
resize =
{
Down = "resize grow height 10 px or 10 ppt"; Escape = "mode default"; Left = "resize shrink width 10 px or 10 ppt"; Return = "mode default"; Right = "resize grow width 10 px or 10 ppt"; Up = "resize shrink height 10 px or 10 ppt";
}
;
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.modifierModifier key that is used for all default keybindings.
Type: one of "Shift", "Control", "Mod1", "Mod2", "Mod3", "Mod4", "Mod5"
Default: "Mod1"
Example: "Mod4"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.startupCommands that should be executed at startup. See https://i3wm.org/docs/userguide.html#_automatically_starting_applications_on_i3_startup.
Type: list of submodule
Default:
[
]
Example:
[
{ command = "systemctl --user restart polybar"; always = true; notification = false; }
{ command = "dropbox start"; notification = false; }
{ command = "firefox"; workspace = "1: web"; }
];
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.startup.*.alwaysWhether to run command on each i3 restart.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.startup.*.commandCommand that will be executed on startup.
Type: string
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.startup.*.notificationWhether to enable startup-notification support for the command.
See --no-startup-id option description in the i3 user guide.
Type: boolean
Default: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.startup.*.workspaceLaunch application on a particular workspace. DEPRECATED:
Use xsession.windowManager.i3.config.assigns
instead. See https://github.com/nix-community/home-manager/issues/265.
Type: null or string
Default: null
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.terminalDefault terminal to run.
Type: string
Default: "i3-sensible-terminal"
Example: "alacritty"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.windowWindow titlebar and border settings.
Type: submodule
Default:
{
}
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.borderWindow border width.
Type: signed integer
Default: 2
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.commandsList of commands that should be executed on specific windows.
See for_window i3wm option documentation.
Type: list of submodule
Default:
[
]
Example:
[
{
command = "border pixel 1"; criteria =
{
class = "XTerm";
}
;
}
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.commands.*.commandi3wm command to execute.
Type: string
Example: "border pixel 1"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.commands.*.criteriaCriteria of the windows on which command should be executed.
A value of true is equivalent to using an empty
criteria (which is different from an empty string criteria).
Type: attribute set of string or boolean
Example:
{
title = "x200: ~/work";
floating = true;
};
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.hideEdgeBordersHide window borders adjacent to the screen edges.
Type: one of "none", "vertical", "horizontal", "both", "smart"
Default: "none"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.window.titlebarWhether to show window titlebars.
Type: boolean
Default: "xsession.windowManager.i3.package != nixpkgs.i3-gaps (titlebar should be disabled for i3-gaps)"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.workspaceAutoBackAndForthAssume you are on workspace "1: www" and switch to "2: IM" using mod+2 because somebody sent you a message. You don’t need to remember where you came from now, you can just press $mod+2 again to switch back to "1: www".
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.workspaceLayoutThe mode in which new containers on workspace level will start.
Type: one of "default", "stacking", "tabbed"
Default: "default"
Example: "tabbed"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.workspaceOutputAssignAssign workspaces to outputs.
Type: list of submodule
Default:
[
]
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.workspaceOutputAssign.*.outputName of the output from i3-msg -t get_outputs .
Type: string
Default: ""
Example: "eDP"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.config.workspaceOutputAssign.*.workspaceName of the workspace to assign.
Type: string
Default: ""
Example: "Web"
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.i3.extraConfigExtra configuration lines to add to ~/.config/i3/config.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/services/window-managers/i3-sway/i3.nix>
|
xsession.windowManager.spectrwm.enableWhether to enable Spectrwm window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.packagePackage providing the spectrwm command.
Type: package
Default: pkgs.spectrwm
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.bindingsSpectrwm keybindings.
Type: attribute set of string
Default:
{
}
Example:
{
term = "Mod+Return";
restart = "Mod+Shift+r";
quit = "Mod+Shift+q";
}
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.programsSpectrwm programs variables.
Type: attribute set of string
Default:
{
}
Example:
{
term = "alacritty";
search = "dmenu -ip -p 'Window name/id:';
}
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.quirksSpectrwm quicks (custom window rules).
Type: attribute set of string
Default:
{
}
Example:
{
Matplotlib = "FLOAT";
Pavucontrol = "FLOAT";
}
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.settingsSpectrwm settings.
Type: attribute set of boolean or signed integer or string
Default:
{
}
Example:
{
modkey = "Mod4";
workspace_limit = 5;
focus_mode = "manual";
focus_close = "next";
}
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.spectrwm.unbindingsList of keybindings to disable from default Spectrwm configuration.
Type: list of string
Default:
[
]
Example:
[ "MOD+e" "MOD+f" "MOD+m" "MOD+s" "MOD+u" "MOD+t" ]
Declared by:
<home-manager/modules/services/window-managers/spectrwm.nix>
|
xsession.windowManager.xmonad.enableWhether to enable xmonad window manager.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|
xsession.windowManager.xmonad.enableContribAndExtrasEnable xmonad-{contrib,extras} in xmonad.
Type: boolean
Default: false
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|
xsession.windowManager.xmonad.configThe configuration file to be used for xmonad. This must be
an absolute path or null in which case
~/.xmonad/xmonad.hs will not be managed
by Home Manager.
If this option is set to a non-null value,
recompilation of xmonad outside of Home Manager (e.g. via
xmonad --recompile) will fail.
Type: null or path
Default: null
Example:
pkgs.writeText "xmonad.hs" ''
import XMonad
main = xmonad defaultConfig
{ terminal = "urxvt"
, modMask = mod4Mask
, borderWidth = 3
}
''
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|
xsession.windowManager.xmonad.extraPackagesExtra packages available to GHC when rebuilding xmonad. The
value must be a function which receives the attribute set
defined in haskellPackages as the sole
argument.
Type: unspecified
Default: "self: []"
Example:
haskellPackages: [ haskellPackages.xmonad-contrib haskellPackages.monad-logger ]
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|
xsession.windowManager.xmonad.haskellPackagesThe haskellPackages used to build xmonad
and other packages. This can be used to change the GHC
version used to build xmonad and the packages listed in
extraPackages.
Type: unspecified
Default: pkgs.haskellPackages
Example: pkgs.haskell.packages.ghc784
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|
xsession.windowManager.xmonad.libFilesAdditional files that will be saved in
~/.xmonad/lib/ and included in the configuration
build. The keys are the file names while the values are paths to the
contents of the files.
Type: attribute set of path
Default:
{
}
Example:
{
"Tools.hs" = pkgs.writeText "Tools.hs" ''
module Tools where
screenshot = "scrot"
'';
}
Declared by:
<home-manager/modules/services/window-managers/xmonad.nix>
|