Install KeePassXC using home-manager
This commit is contained in:
parent
6e6fa9c599
commit
25ca3bb7cc
2 changed files with 21 additions and 0 deletions
|
|
@ -4,5 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
./discord.nix
|
./discord.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
|
./keepassxc.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
20
roles/desktop/keepassxc.nix
Normal file
20
roles/desktop/keepassxc.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# I'm only using keepass on my user, so I'm installing it with home-manager
|
||||||
|
home-manager = {
|
||||||
|
/*
|
||||||
|
TODO: move home-manager settings into the common role
|
||||||
|
They are not keepass specific, so they really should
|
||||||
|
not be here. I'm too lazy to do it now tho :P
|
||||||
|
*/
|
||||||
|
backupFileExtension = "backup";
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
users.toast = { config, pkgs, ... }: {
|
||||||
|
home = {
|
||||||
|
stateVersion = "23.05";
|
||||||
|
packages = [ pkgs.keepassxc ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue