diff options
author | Alan Pearce | 2024-03-20 17:27:44 +0100 |
---|---|---|
committer | Alan Pearce | 2024-03-20 17:27:44 +0100 |
commit | d22a27c1cadb18d2b521cd010d71bb58c5550546 (patch) | |
tree | 5ab9fe7b8feac789057c3ebb3bdeead5c3700068 /user | |
parent | 164587c9b549f2689bf843fecc3a605963cefdc9 (diff) | |
download | nixfiles-d22a27c1cadb18d2b521cd010d71bb58c5550546.tar.lz nixfiles-d22a27c1cadb18d2b521cd010d71bb58c5550546.tar.zst nixfiles-d22a27c1cadb18d2b521cd010d71bb58c5550546.zip |
Remove lima nixos setup
Diffstat (limited to 'user')
-rw-r--r-- | user/lima.nix | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/user/lima.nix b/user/lima.nix deleted file mode 100644 index 779d5af8..00000000 --- a/user/lima.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ config, 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/fish.nix - ]; - home = { - username = "alan"; - homeDirectory = "/home/alan.linux"; - sessionVariables = { - GHQ_ROOT = "/Users/alan/projects"; - SSH_AUTH_SOCK = "/Users/alan/.strongbox/agent.sock"; - }; - stateVersion = "23.11"; - }; - programs.ssh.extraConfig = '' - IdentityAgent ${config.home.sessionVariables.SSH_AUTH_SOCK} - ''; - # home-manager complains when setting nix.conf otherwise - nix.package = pkgs.nix; - nix.settings = { - max-jobs = 4; - experimental-features = "nix-command flakes"; - }; -} |