mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-19 01:54:02 +05:30
Major update to handle multiple systems
This commit is contained in:
parent
0453901d17
commit
cd1d2d866b
34 changed files with 2040 additions and 456 deletions
|
@ -2,10 +2,17 @@
|
|||
|
||||
{
|
||||
options = {
|
||||
systemSettings.dotfilesDir = lib.mkOption {
|
||||
default = "/etc/nixos";
|
||||
description = "Absolute path to the dotfiles directory";
|
||||
type = lib.types.path;
|
||||
systemSettings = {
|
||||
dotfilesDir = lib.mkOption {
|
||||
default = "/etc/nixos";
|
||||
description = "Absolute path to the dotfiles directory";
|
||||
type = lib.types.path;
|
||||
};
|
||||
secretsFlakeDir = lib.mkOption {
|
||||
default = "/etc/nixos.secrets";
|
||||
description = "Absolute path to my secrets flake";
|
||||
type = lib.types.path;
|
||||
};
|
||||
};
|
||||
};
|
||||
# TODO disabled for debugging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue