all repos — nixfiles @ 767a36b4372f5a54afeef8ec98524ffeb50cdbeb

System and user configuration, managed by nix and home-manager

user/server.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; {
  imports = [
    ./settings/base.nix
    ./settings/git.nix
    ./settings/nix.nix
    ./settings/nixos.nix
    ./settings/zsh.nix
  ];
  home.sessionVariables.EDITOR = "${getBin config.programs.neovim.finalPackage}/bin/neovim";
}