This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/options/desktop/default.nix
2026-04-13 18:40:55 +07:00

18 lines
301 B
Nix

{ lib, ... }:
{
imports = [
../common/default.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";
};
};
}