mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
chore: improve work setup
This commit is contained in:
parent
54d4090918
commit
dfe2c3922d
10 changed files with 161 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
|||
_:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
services.gnome-keyring = {
|
||||
services.gnome-keyring = lib.mkIf (!config.swarselsystems.isNixos) {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
./power-profiles-daemon.nix
|
||||
# ./impermanence.nix
|
||||
./nix-ld.nix
|
||||
./gnome-keyring.nix
|
||||
];
|
||||
|
||||
nix.settings.trusted-users = [ "swarsel" ];
|
||||
|
|
|
|||
8
profiles/common/nixos/gnome-keyring.nix
Normal file
8
profiles/common/nixos/gnome-keyring.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
_:
|
||||
{
|
||||
services.gnome.gnome-keyring = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.seahorse.enable = true;
|
||||
}
|
||||
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
# kde-connect
|
||||
xdg-desktop-portal
|
||||
xdg-desktop-portal-wlr
|
||||
|
||||
# bluetooth
|
||||
bluez
|
||||
|
|
@ -59,6 +60,8 @@
|
|||
clang-tools
|
||||
# + cuda
|
||||
cudatoolkit
|
||||
# ansible
|
||||
ansible-language-server
|
||||
#lsp-bridge / python
|
||||
gcc
|
||||
gdb
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ in
|
|||
{
|
||||
sops = {
|
||||
|
||||
age.sshKeyPaths = [ "${config.users.users.swarsel.home}/.ssh/sops" ];
|
||||
age.sshKeyPaths = mkIfElse config.swarselsystems.isBtrfs [ "/persist/.ssh/sops" ] [ "${config.users.users.swarsel.home}/.ssh/sops" ];
|
||||
defaultSopsFile = mkIfElse config.swarselsystems.isBtrfs "/persist/.dotfiles/secrets/general/secrets.yaml" "${config.users.users.swarsel.home}/.dotfiles/secrets/general/secrets.yaml";
|
||||
|
||||
validateSopsFiles = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue