desktop: move to nheko with gnome-keyring
This commit is contained in:
parent
687fd92a94
commit
2a3079f35e
@ -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
|
||||||
|
@ -57,7 +57,7 @@
|
|||||||
environment = {
|
environment = {
|
||||||
systemPackages = [
|
systemPackages = [
|
||||||
pkgs.linux-firmware
|
pkgs.linux-firmware
|
||||||
pkgs-kabbone.corosync-qdevice
|
#pkgs-kabbone.corosync-qdevice
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
@ -64,6 +64,7 @@
|
|||||||
vimiv-qt
|
vimiv-qt
|
||||||
freecad
|
freecad
|
||||||
discord
|
discord
|
||||||
|
nheko
|
||||||
|
|
||||||
# Fileanagement
|
# Fileanagement
|
||||||
kdePackages.ark
|
kdePackages.ark
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
14
modules/services/keyring.nix
Normal file
14
modules/services/keyring.nix
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
#
|
||||||
|
# Screenshots
|
||||||
|
#
|
||||||
|
|
||||||
|
{ pkgs, user, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services = { # sxhkd shortcut = Printscreen button (Print)
|
||||||
|
gnome-keyring = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
home.packages = with pkgs; [ gcr seahorse ];
|
||||||
|
}
|
@ -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;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
corosync-qdevice = pkgs.callPackage ./corosync-qdevice.nix {};
|
# corosync-qdevice = pkgs.callPackage ./corosync-qdevice.nix {};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user