add files

This commit is contained in:
Asaki Yuki 2026-04-13 18:40:55 +07:00
parent 919f3ba969
commit d3ff717341
6 changed files with 122 additions and 58 deletions

View file

@ -1,18 +1,18 @@
{ lib, ... }: {
imports = [
../common/default.nix
{ lib, ... }:
{
imports = [
../common/default.nix
./environment.nix
./programs.nix
./hardware.nix
./file.nix
];
./environment.nix
./programs.nix
./hardware.nix
];
options.device = {
cursors = lib.mkOption {
type = lib.types.str;
default = "aemeath";
description = "Cursor theme to use for the desktop";
};
options.device = {
cursors = lib.mkOption {
type = lib.types.str;
default = "aemeath";
description = "Cursor theme to use for the desktop";
};
}
};
}