Compare commits

...

2 commits

Author SHA1 Message Date
8d1cc559f9 Add nixos-rebuild helper script
this scripts sets the NIXOS_CONFIG to the one in the project
2023-12-12 12:39:29 +01:00
bf594827b0 Add guess-indent nvim plugin 2023-12-12 12:38:55 +01:00
2 changed files with 7 additions and 0 deletions

View file

@ -99,6 +99,11 @@
set listchars=space:·,tab:» set listchars=space:·,tab:»
set indentkeys-=0# set indentkeys-=0#
''; '';
packages.myVimPackage = with pkgs.vimPlugins; {
start = [
guess-indent-nvim
];
};
}; };
}; };

2
nixos-rebuild.sh Executable file
View file

@ -0,0 +1,2 @@
NIXOS_CONFIG="$(pwd)/configuration.nix"
nixos-rebuild $@