noctalia shit mostly

This commit is contained in:
martyTF 2026-04-16 08:01:28 +02:00
parent 7b9b6c1cdd
commit 34dd048981
14 changed files with 398 additions and 144 deletions

View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}:
{
options = {
device.type = lib.mkOption {
default = "minimal";
description = "device type (desktop, laptop, server, minimal) for base config";
};
};
imports = [
./minimal.nix
./desktop.nix
./laptop.nix
./server.nix
];
}

View file

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
config = { };
}

10
modules/device/laptop.nix Normal file
View file

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
config = { };
}

View file

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
config = { };
}

10
modules/device/server.nix Normal file
View file

@ -0,0 +1,10 @@
{
config,
lib,
pkgs,
...
}:
{
config = { };
}