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-09 10:36:32 +07:00

17 lines
No EOL
350 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";
};
};
}