mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 21:36:34 +05:30
refactor: split code into modules
This commit is contained in:
15
modules/base/nix.nix
Normal file
15
modules/base/nix.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
pkgs,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
nix = {
|
||||
package = pkgs.lix;
|
||||
settings = {
|
||||
experimental-features = "nix-command flakes";
|
||||
auto-optimise-store = true;
|
||||
trusted-users = ["${username}"];
|
||||
warn-dirty = false;
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user