-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
47 lines (43 loc) · 1.79 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
description = "Andrey's Home Configurations";
inputs = {
# nix flake info
# https://status.nixos.org/
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11";
# nixpkgs-master.url = "github:nixos/nixpkgs/master";
home-manager.url = "github:nix-community/home-manager/master";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
neovim-nightly.url = "github:neovim/neovim?dir=contrib"; #" #&rev=eb151a9730f0000ff46e0b3467e29bb9f02ae362";
neovim-nightly.inputs.nixpkgs.follows = "nixpkgs";
agenix.url = "github:ryantm/agenix/main";
agenix.inputs.nixpkgs.follows = "nixpkgs";
# zsh plugins
# (some are available via nixpkgs but this way we can always keep them up to date)
zsh-powerlevel10k.url = "github:romkatv/powerlevel10k";
zsh-powerlevel10k.flake = false;
zsh-completions.url = "github:zsh-users/zsh-completions";
zsh-completions.flake = false;
zsh-fzf-tab.url = "github:Aloxaf/fzf-tab";
zsh-fzf-tab.flake = false;
zsh-fzf-tab-source.url = "github:Freed-Wu/fzf-tab-source";
zsh-fzf-tab-source.flake = false;
zsh-fzf-zsh-plugin.url = "github:unixorn/fzf-zsh-plugin";
zsh-fzf-zsh-plugin.flake = false;
lscolors.url = "github:trapd00r/LS_COLORS";
lscolors.flake = false;
zsh-edit.url = "github:marlonrichert/zsh-edit";
zsh-edit.flake = false;
zsh-almostontop.url = "github:Valiev/almostontop";
zsh-almostontop.flake = false;
zsh-autocomplete.url = "github:marlonrichert/zsh-autocomplete";
zsh-autocomplete.flake = false;
};
outputs = { self, ... }: {
homeConfigurations = import ./home/config.nix {
flake = self;
hosts = import ./hosts/config.nix { inherit (self.inputs.nixpkgs) lib; };
extraModules = [ ];
};
};
}