Update to nixos 24.05

This commit is contained in:
2024-06-15 16:02:25 +02:00
parent a42578a1b1
commit 6677d36d87
8 changed files with 22 additions and 14 deletions

View File

@ -75,7 +75,7 @@ in {
home.packages = with pkgs; [
libsecret
libnotify
urlview
urlscan
];
home.file.mailcap = {
target = ".mailcap";
@ -114,7 +114,7 @@ in {
macros = [
{ map = [ "pager" "index" ];
key = "B";
action = "|urlview\\n";
action = "|urlscan\\n";
}
/*{ map = [ "pager" "index" ];
key = "dd";

View File

@ -1,6 +1,6 @@
{ ... }: {
qt = {
enable = true;
platformTheme = "gtk";
platformTheme.name = "gtk";
};
}

View File

@ -1,7 +1,7 @@
{ pkgs, ... }: {
programs.zsh = {
enable = true;
enableAutosuggestions = true;
autosuggestion.enable = true;
enableCompletion = true;
autocd = true;
dotDir = ".config/zsh";