mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
refactor(droid): rename module namespace to nixondroid
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{ inputs, config, ... }:
|
{ inputs, config, ... }:
|
||||||
{
|
{
|
||||||
flake.modules.droid.core =
|
flake.modules.nixOnDroid.core =
|
||||||
{
|
{
|
||||||
hostName,
|
hostName,
|
||||||
userName,
|
userName,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
flake.modules.droid.core = {
|
flake.modules.nixOnDroid.core = {
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
flake.modules.droid.networking =
|
flake.modules.nixOnDroid.networking =
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
|
|||||||
@@ -62,8 +62,8 @@ let
|
|||||||
;
|
;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
config.flake.modules.droid.core
|
config.flake.modules.nixOnDroid.core
|
||||||
config.flake.modules.droid.${hostName}
|
config.flake.modules.nixOnDroid.${hostName}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
{
|
{
|
||||||
flake.modules.droid.vega =
|
flake.modules.nixOnDroid.vega =
|
||||||
{
|
{
|
||||||
pkgs,
|
pkgs,
|
||||||
userEmail,
|
userEmail,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = with config.flake.modules.droid; [
|
imports = with config.flake.modules.nixOnDroid; [
|
||||||
networking
|
networking
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user