Move to recursiveMod, nixdirfmt

This commit is contained in:
kat witch 2021-09-04 01:14:17 +01:00
parent 3a4458eae5
commit 76a479f14e
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
66 changed files with 313 additions and 335 deletions

View file

@ -2,6 +2,7 @@
{
base16 = {
inherit (config.home-manager.users.kat.base16) schemes alias;
console = {
enable = true;
scheme = config.home-manager.users.kat.base16.alias.default;

View file

@ -1,22 +0,0 @@
{ config, meta, lib, pkgs, ... }:
{
imports = with meta; [
users.kat.base
users.arc
users.hexchen
./system.nix
./kitty.nix
./home.nix
./profiles.nix
./shell.nix
./base16.nix
./network.nix
./access.nix
./locale.nix
./nix.nix
./ssh.nix
./packages.nix
./secrets.nix
];
}

View file

@ -0,0 +1,7 @@
{ config, meta, ... }: {
imports = with meta; [
users.kat.base
users.hexchen
users.arc
];
}

View file

@ -1,6 +1,8 @@
{ config, lib, pkgs, ... }:
{ config, meta, lib, pkgs, ... }:
{
imports = lib.optional (meta ? trusted) meta.trusted.secrets;
secrets = {
root = "/var/lib/kat/secrets";
persistentRoot = "/var/lib/kat/secrets";