all repos — nixfiles @ f99c69a24094f471bb48a9eb60994e9118da884b

System and user configuration, managed by nix and home-manager

Set up lima VM running nixos

Alan Pearce
commit

f99c69a24094f471bb48a9eb60994e9118da884b

parent

4a6d5f251eba3203295a09a44b3a9c86ed3c999d

1 file changed, 24 insertions(+), 0 deletions(-)

changed files
A user/lima.nix
@@ -0,0 +1,24 @@
+{ pkgs, ... }: +{ + imports = [ + ./modules/tabnine.nix + ./settings/base.nix + ./settings/development/base.nix + ./settings/git.nix + ./settings/nix.nix + ./settings/nixos.nix + ./settings/ssh.nix + ./settings/zsh.nix + ]; + home = { + username = "alan"; + homeDirectory = "/home/alan.linux"; + stateVersion = "22.11"; + }; + # home-manager complains when setting nix.conf otherwise + nix.package = pkgs.nix; + nix.settings = { + max-jobs = 4; + experimental-features = "nix-command flakes"; + }; +}