13 lines
302 B
Nix
13 lines
302 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
../../home/profiles/terminal.nix
|
|
];
|
|
|
|
home.stateVersion = "24.11";
|
|
|
|
# Muffin typically doesn't have the GPG key loaded (no agent forwarded,
|
|
# no key in the keyring). Unsigned commits here rather than failing silently.
|
|
programs.git.signing.signByDefault = false;
|
|
}
|