chore: nf-fmt-nix

This commit is contained in:
arcnmx 2024-05-13 15:13:58 -07:00
parent 7486517713
commit 9903866044
160 changed files with 4570 additions and 3019 deletions

View file

@ -1,4 +1,8 @@
{config, options, ...}: {
{
config,
options,
...
}: {
config.users = {
users.connieallure = {name, ...}: {
uid = 8003;
@ -15,7 +19,11 @@
gid = config.users.users.${name}.uid;
};
};
config.${if options ? networking.firewall then "networking" else null} = {
config.${
if options ? networking.firewall
then "networking"
else null
} = {
access.peeps.ranges.connieallure = "2604:3d00::/28";
};
}