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