22 lines
222 B
Nix
22 lines
222 B
Nix
{
|
|
inputs,
|
|
hostname,
|
|
username,
|
|
lib,
|
|
mylib,
|
|
config,
|
|
nixosConfig,
|
|
pkgs,
|
|
...
|
|
}:
|
|
# Here goes the stuff that will only be enabled on the laptop
|
|
rec {
|
|
imports = [
|
|
../../modules
|
|
];
|
|
|
|
modules = {
|
|
|
|
};
|
|
}
|