mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
16 lines
249 B
Nix
16 lines
249 B
Nix
{
|
|
pkgs,
|
|
username,
|
|
...
|
|
}: {
|
|
nix = {
|
|
package = pkgs.lix;
|
|
settings = {
|
|
experimental-features = "nix-command flakes";
|
|
auto-optimise-store = true;
|
|
trusted-users = ["${username}"];
|
|
warn-dirty = false;
|
|
};
|
|
};
|
|
}
|