17 lines
257 B
Nix
17 lines
257 B
Nix
{ system, ... }:
|
|
{
|
|
username = "henrov";
|
|
password = "henrov";
|
|
homeDirectory = "/home/henrov";
|
|
stateVersion = "25.11";
|
|
locale = "nl_NL.UTF-8";
|
|
}
|
|
|
|
{ mkShell }:
|
|
mkShell {
|
|
buildInputs = with import <nixpkgs> {}; [
|
|
nil
|
|
nixfmt-rfc-style
|
|
];
|
|
}
|