home-manager: go back to 23.11
This commit is contained in:
parent
72aa907ebd
commit
e609bafe8b
|
@ -256,16 +256,16 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1711133180,
|
||||
"narHash": "sha256-WJOahf+6115+GMl3wUfURu8fszuNeJLv9qAWFQl3Vmo=",
|
||||
"lastModified": 1710888565,
|
||||
"narHash": "sha256-s9Hi4RHhc6yut4EcYD50sZWRDKsugBJHSbON8KFwoTw=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "1c2c5e4cabba4c43504ef0f8cc3f3dfa284e2dbb",
|
||||
"rev": "f33900124c23c4eca5831b9b5eb32ea5894375ce",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nix-community",
|
||||
"ref": "master",
|
||||
"ref": "release-23.11",
|
||||
"repo": "home-manager",
|
||||
"type": "github"
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
flake-compat.url = "github:edolstra/flake-compat";
|
||||
flake-compat.flake = false;
|
||||
|
||||
home-manager.url = "github:nix-community/home-manager/master";
|
||||
home-manager.url = "github:nix-community/home-manager/release-23.11";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
|
|
|
@ -53,6 +53,8 @@ with lib; let
|
|||
extraConfig = ''
|
||||
set pgp_default_key="${gpg.key}"
|
||||
|
||||
unmailboxes *
|
||||
|
||||
mailboxes +INBOX \
|
||||
+Drafts \
|
||||
+Sent \
|
||||
|
@ -70,6 +72,14 @@ in {
|
|||
home-manager.users."${psCfg.user.name}" = rec {
|
||||
xdg.configFile."neomutt/base16.muttrc".source = ./.config/neomutt/base16.muttrc;
|
||||
xdg.configFile."neomutt/mailcap".source = ./.config/neomutt/mailcap;
|
||||
xdg.configFile."urlscan/config.json".text = builtins.toJSON {
|
||||
keys = {
|
||||
"G" = "bottom";
|
||||
"gg" = "top";
|
||||
"k" = "down";
|
||||
"i" = "up";
|
||||
};
|
||||
};
|
||||
|
||||
accounts.email = {
|
||||
maildirBasePath = "/home/${psCfg.user.name}/Mail";
|
||||
|
@ -190,7 +200,7 @@ in {
|
|||
action = ''<sync-mailbox><enter-command>source ${configHome}/neomutt/${address}<enter><change-folder>!<enter>'';
|
||||
}) (builtins.attrNames accounts.email.accounts);
|
||||
|
||||
unmailboxes = true;
|
||||
# unmailboxes = true;
|
||||
extraConfig = ''
|
||||
source ${configHome}/neomutt/base16.muttrc
|
||||
|
||||
|
|
Loading…
Reference in a new issue