NixOSDots/README.md
Alexandre 1fb2bebc88
All checks were successful
Check config / build (push) Successful in 9m43s
Started dentritic pattern
2026-06-20 00:15:16 +02:00

29 lines
449 B
Markdown

## Personal notes
##### Todo:
Change the greeter to not carry some useless xserver, see noctalia greet, or greetd
##### Boilerplate:
for a module (host, etc...)
```
{ self, inputs, ... }:
{
flake.nixosModules.<module> = { config, pkgs, inputs, ...}: {
};
}
```
For a program (wrapped)
```
{ self, inputs, ... }:
{
flake.nixosModules.<program> = { pkgs, lib, self', ... }: {
};
perSystem = { pkgs, lib, ...} : {
<program>
};
}
```