feat(home-manager): install sops-nix when using standalone home-manager
This commit is contained in:
parent
43e3c37e71
commit
9edca93fd5
1 changed files with 2 additions and 1 deletions
|
@ -1,10 +1,11 @@
|
||||||
{ stateVersion, username, ... }:
|
{ stateVersion, username, inputs, ... }:
|
||||||
{
|
{
|
||||||
home.stateVersion = stateVersion;
|
home.stateVersion = stateVersion;
|
||||||
home.username = "${username}";
|
home.username = "${username}";
|
||||||
home.homeDirectory = "/home/${username}";
|
home.homeDirectory = "/home/${username}";
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
imports = [
|
imports = [
|
||||||
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
./base.nix
|
./base.nix
|
||||||
../nixos/includes/system/overlay.nix
|
../nixos/includes/system/overlay.nix
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue