treewide: rename common modules to settei

This commit is contained in:
Nikodem Rabuliński 2025-01-04 19:21:28 +01:00
parent c182071080
commit 2bafb42028
11 changed files with 17 additions and 18 deletions

View file

@ -9,7 +9,7 @@
let
inherit (lib) mkOption types;
cfg = config.common.incus;
cfg = config.settei.incus;
sharedConfig = {
environment.systemPackages = [
@ -71,7 +71,7 @@ in
{
_file = ./incus.nix;
options.common.incus = {
options.settei.incus = {
enable = lib.mkEnableOption "incus, the VM and container manager";
clientOnly = mkOption {
type = types.bool;
@ -81,7 +81,7 @@ in
clientPackage = lib.mkOption {
type = types.package;
default = cfg.package.client;
defaultText = lib.literalExpression "config.common.incus.package.client";
defaultText = lib.literalExpression "config.settei.incus.package.client";
description = "The incus client package to use. This package is added to PATH.";
};
};