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 = {
|
poz = {
|
||||||
other.home-manager.enable = true;
|
other.home-manager.enable = true;
|
||||||
programs = {
|
programs = {
|
||||||
agenix.enable = true;
|
|
||||||
git = {
|
git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultBranch = "master";
|
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 = [
|
imports = [
|
||||||
|
./agenix.nix
|
||||||
./binary-caches.nix
|
./binary-caches.nix
|
||||||
./dash.nix
|
./dash.nix
|
||||||
./dbus.nix
|
./dbus.nix
|
||||||
|
|
|
@ -103,7 +103,6 @@ in {
|
||||||
networking.enable = true;
|
networking.enable = true;
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
agenix.enable = true;
|
|
||||||
nh = let
|
nh = let
|
||||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||||
in {
|
in {
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
networking.enable = true;
|
networking.enable = true;
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
agenix.enable = true;
|
|
||||||
nh = let
|
nh = let
|
||||||
inherit (config.poz.other.system) username;
|
inherit (config.poz.other.system) username;
|
||||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||||
|
|
|
@ -58,7 +58,6 @@ in {
|
||||||
networking.enable = true;
|
networking.enable = true;
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
agenix.enable = true;
|
|
||||||
nh = let
|
nh = let
|
||||||
inherit (config.poz.other.system) username;
|
inherit (config.poz.other.system) username;
|
||||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||||
|
|
|
@ -60,7 +60,6 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
agenix.enable = true;
|
|
||||||
nh = let
|
nh = let
|
||||||
home = config.home-manager.users.${username}.home.homeDirectory;
|
home = config.home-manager.users.${username}.home.homeDirectory;
|
||||||
in {
|
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 = [
|
imports = [
|
||||||
./agenix.nix
|
|
||||||
./git.nix
|
./git.nix
|
||||||
./nh.nix
|
./nh.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
|
|
Loading…
Reference in a new issue