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

449 B

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>
  };
}