gitignore

This commit is contained in:
Philipp Hochkamp 2022-03-02 00:42:05 +01:00
parent c39f8252f7
commit 849bb9bb96
No known key found for this signature in database
GPG key ID: 3676AB4CB36E5641
3 changed files with 20 additions and 0 deletions

7
.envrc Normal file
View file

@ -0,0 +1,7 @@
use_flake() {
watch_file flake.nix
watch_file flake.lock
eval "$(nix print-dev-env)"
}
use flake

12
.gitignore vendored Normal file
View file

@ -0,0 +1,12 @@
# Ignore configurable file with secrets
#/data/secrets.nix
.DS_Store
# Ignore build symlinks
result*
internal
.tmp
# Ignore vscode stuff
/.vscode/

View file

@ -12,6 +12,7 @@
ctags
];
home.file.".config/nvim".source = ./config;
home.file.".config/nvim".recursive = true;
programs.neovim =
let
conf = inputs.self.nixosConfigurations.enterprise.config.programs.neovim.configure;