move agenix into hosts/common
This commit is contained in:
parent
ddae4f3265
commit
76a2eeda57
9 changed files with 15 additions and 34 deletions
|
@ -56,7 +56,6 @@ in {
|
|||
poz = {
|
||||
other.home-manager.enable = true;
|
||||
programs = {
|
||||
agenix.enable = true;
|
||||
git = {
|
||||
enable = true;
|
||||
defaultBranch = "master";
|
||||
|
|
14
hosts/common/core/agenix.nix
Normal file
14
hosts/common/core/agenix.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
inherit (config.poz.other.system) username;
|
||||
in {
|
||||
imports = [ inputs.agenix.nixosModules.default ];
|
||||
|
||||
users.users.${username}.packages = [
|
||||
inputs.agenix.packages.${pkgs.system}.default
|
||||
];
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./agenix.nix
|
||||
./binary-caches.nix
|
||||
./dash.nix
|
||||
./dbus.nix
|
||||
|
|
|
@ -103,7 +103,6 @@ in {
|
|||
networking.enable = true;
|
||||
};
|
||||
programs = {
|
||||
agenix.enable = true;
|
||||
nh = let
|
||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||
in {
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
networking.enable = true;
|
||||
};
|
||||
programs = {
|
||||
agenix.enable = true;
|
||||
nh = let
|
||||
inherit (config.poz.other.system) username;
|
||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||
|
|
|
@ -58,7 +58,6 @@ in {
|
|||
networking.enable = true;
|
||||
};
|
||||
programs = {
|
||||
agenix.enable = true;
|
||||
nh = let
|
||||
inherit (config.poz.other.system) username;
|
||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||
|
|
|
@ -60,7 +60,6 @@ in {
|
|||
};
|
||||
};
|
||||
programs = {
|
||||
agenix.enable = true;
|
||||
nh = let
|
||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||
in {
|
||||
|
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
cfg = config.poz.programs.agenix;
|
||||
|
||||
inherit (config.poz.other.system) username;
|
||||
|
||||
inherit (lib.modules) mkIf;
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in {
|
||||
options.poz.programs.agenix = {
|
||||
enable = mkEnableOption "agenix";
|
||||
};
|
||||
|
||||
imports = [ inputs.agenix.nixosModules.default ];
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home-manager.users.${username} = {
|
||||
home.packages = [
|
||||
inputs.agenix.packages.${pkgs.system}.default
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
_: {
|
||||
imports = [
|
||||
./agenix.nix
|
||||
./git.nix
|
||||
./nh.nix
|
||||
./starship.nix
|
||||
|
|
Loading…
Reference in a new issue