Riley Apeldoorn
027bbd01c1
- XDG user directories - Fingerprint reader on `lime` - Enable tailscale - Enable `iamb` on `lime`
26 lines
No EOL
318 B
Nix
26 lines
No EOL
318 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
./bash.nix
|
|
./git.nix
|
|
./mpd.nix
|
|
./xdg.nix
|
|
./programs.nix
|
|
./matrix.nix
|
|
./theme.nix
|
|
./gui
|
|
./nix
|
|
];
|
|
|
|
options.isNixos = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
|
|
config = {
|
|
theme = import ../../themes/lean.nix;
|
|
};
|
|
|
|
} |