home/programs: add cinny, a matrix client

This commit is contained in:
Anthony Rodriguez 2024-10-07 18:43:48 +02:00
parent 4277ad8417
commit e5171c221e
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 3 additions and 3 deletions

View file

@ -11,13 +11,12 @@
fastfetch.enable = true; fastfetch.enable = true;
yazi.enable = true; yazi.enable = true;
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
imhex imhex
obsidian obsidian
proton-pass proton-pass
vesktop vesktop
wl-clipboard wl-clipboard
fractal cinny-desktop
]; ];
} }

View file

@ -1,4 +1,4 @@
_: { {pkgs, ...}: {
nixpkgs = { nixpkgs = {
config.allowUnfree = true; config.allowUnfree = true;
overlays = [ overlays = [
@ -10,5 +10,6 @@ _: {
}; };
}) })
]; ];
config.permittedInsecurePackages = ["cinny-4.2.1" "cinny-unwrapped-4.2.1"];
}; };
} }