nix/home: fix typo in filename

This commit is contained in:
steveej 2019-01-26 13:41:51 +01:00
parent 5add90f92e
commit 810c61216d
3 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,27 @@
{ pkgs
, config,
... }:
let
in {
imports = [
../profiles/common.nix
../profiles/nix-channels.nix
../programs/neovim.nix
../programs/zsh.nix
];
nixpkgs.config = {
packageOverrides = pkgs: with pkgs; {
};
};
home.sessionVariables = {
};
home.packages = []
++ (with pkgs; [
iperf3
]);
}