Skip to content

Instantly share code, notes, and snippets.

@kergoth
Created November 21, 2022 20:22
Show Gist options
  • Save kergoth/d7ad882d07e63811cd5773b4f8d0c4b8 to your computer and use it in GitHub Desktop.
Save kergoth/d7ad882d07e63811cd5773b4f8d0c4b8 to your computer and use it in GitHub Desktop.
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