desktop: move to nheko with gnome-keyring

This commit is contained in:
Kabbone 2025-10-18 14:58:03 +02:00
parent 687fd92a94
commit 2a3079f35e
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
10 changed files with 23 additions and 6 deletions

View File

@ -47,6 +47,7 @@
};
security = {
pam.services.login.enableGnomeKeyring = true;
rtkit.enable = true;
pki.certificateFiles = [
./rootCA.pem
@ -187,6 +188,9 @@
'';
};
nixpkgs.config.allowUnfree = true; # Allow proprietary software.
nixpkgs.config.permittedInsecurePackages = [
"olm-3.2.16"
];
system = { # NixOS settings
autoUpgrade = { # Allow auto update

View File

@ -57,7 +57,7 @@
environment = {
systemPackages = [
pkgs.linux-firmware
pkgs-kabbone.corosync-qdevice
#pkgs-kabbone.corosync-qdevice
];
};

View File

@ -30,7 +30,6 @@
thunderbird
streamlink
streamlink-twitch-gui-bin
element-desktop
#nheko
pulsemixer
#yubioath-flutter

View File

@ -64,6 +64,7 @@
vimiv-qt
freecad
discord
nheko
# Fileanagement
kdePackages.ark

View File

@ -30,7 +30,6 @@
thunderbird
streamlink
streamlink-twitch-gui-bin
element-desktop
intel-gpu-tools
pulsemixer

View File

@ -35,7 +35,6 @@
thunderbird
streamlink
streamlink-twitch-gui-bin
element-desktop
pulsemixer
#yuzu-early-access

View File

@ -19,6 +19,7 @@
#./udiskie.nix
#./redshift.nix
./kanshi.nix
./keyring.nix
]
# picom, polybar and sxhkd are pulled from desktop module

View File

@ -0,0 +1,14 @@
#
# Screenshots
#
{ pkgs, user, ... }:
{
services = { # sxhkd shortcut = Printscreen button (Print)
gnome-keyring = {
enable = true;
};
};
home.packages = with pkgs; [ gcr seahorse ];
}

View File

@ -95,7 +95,7 @@
#{ command = "exec ${pkgs.networkmanagerapplet}/bin/nm-applet --indicator"; }
{ command = "${pkgs.thunderbird}/bin/thunderbird"; }
{ command = "${pkgs.firefox}/bin/firefox"; }
{ command = "${pkgs.element-desktop}/bin/element-desktop"; }
{ command = "${pkgs.nheko}/bin/nheko"; }
];
workspaceAutoBackAndForth = true;

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{
corosync-qdevice = pkgs.callPackage ./corosync-qdevice.nix {};
# corosync-qdevice = pkgs.callPackage ./corosync-qdevice.nix {};
}