All checks were successful
Check config / build (push) Successful in 9m47s
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>
};
}
Description
Languages
Nix
98.7%
Shell
0.8%
CMake
0.5%