flake update, niri stuff

This commit is contained in:
martyTF 2026-04-26 22:32:05 +02:00
parent 83c92deef5
commit 5d8e3292d2
15 changed files with 454 additions and 193 deletions

View file

@ -9,14 +9,7 @@
options = {
device.type = lib.mkOption {
default = "minimal";
description = "device type (desktop, laptop, server, minimal) for base config";
description = "device type";
};
};
imports = [
./minimal.nix
./desktop.nix
./laptop.nix
./server.nix
];
}

View file

@ -6,5 +6,14 @@
}:
{
config = { };
config = {
device.type = "desktop";
apps = {
internet = {
rss = {
enable = true;
};
};
};
};
}