This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git i/home.nix w/home.nix | |
index aedec3b..84c5bc4 100644 | |
--- i/home.nix | |
+++ w/home.nix | |
@@ -10,6 +10,8 @@ | |
# https://rycee.gitlab.io/home-manager/options.html | |
home.stateVersion = "22.05"; | |
+ nixpkgs.config.allowUnfree = true; | |
+ | |
home.packages = with pkgs; [ | |
wget | |
@@ -62,6 +64,12 @@ | |
reattach-to-user-namespace | |
]; | |
+# home.file = { | |
+# ".vimrc".source = config.lib.file.mkOutOfStoreSymlink ./vim/vimrc.redir; | |
+# ".config/nvim".source = config.lib.file.mkOutOfStoreSymlink ./vim; | |
+# ".config/vim".source = config.lib.file.mkOutOfStoreSymlink ./vim; | |
+# }; | |
+ | |
programs = { | |
# Let Home Manager install and manage itself. | |
home-manager.enable = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment