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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -19,6 +19,7 @@
#./udiskie.nix #./udiskie.nix
#./redshift.nix #./redshift.nix
./kanshi.nix ./kanshi.nix
./keyring.nix
] ]
# picom, polybar and sxhkd are pulled from desktop module # 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 = "exec ${pkgs.networkmanagerapplet}/bin/nm-applet --indicator"; }
{ command = "${pkgs.thunderbird}/bin/thunderbird"; } { command = "${pkgs.thunderbird}/bin/thunderbird"; }
{ command = "${pkgs.firefox}/bin/firefox"; } { command = "${pkgs.firefox}/bin/firefox"; }
{ command = "${pkgs.element-desktop}/bin/element-desktop"; } { command = "${pkgs.nheko}/bin/nheko"; }
]; ];
workspaceAutoBackAndForth = true; workspaceAutoBackAndForth = true;

View File

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