-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
42 lines (32 loc) · 1.25 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
{
description = "Nixos config flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
darwin.url = "github:lnl7/nix-darwin";
darwin.inputs.nixpkgs.follows = "nixpkgs";
snowfall-lib.url = "github:snowfallorg/lib";
snowfall-lib.inputs.nixpkgs.follows = "nixpkgs";
snowfall-flake.url = "github:snowfallorg/flake";
snowfall-flake.inputs.nixpkgs.follows = "nixpkgs";
stylix.url = "github:danth/stylix";
stylix.inputs.nixpkgs.follows = "nixpkgs";
nixvim.url = "github:nix-community/nixvim";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
pomodoro-clock-cli.url = "github:geraldserafin/pomodoro-clock-cli";
pomodoro-clock-cli.inputs.nixpkgs.follows = "nixpkgs";
oh-my-bash.url = "github:ohmybash/oh-my-bash";
oh-my-bash.flake = false;
};
outputs = inputs:
inputs.snowfall-lib.mkFlake {
inherit inputs;
src = ./.;
channels-config.allowUnfree = true;
snowfall.namespace = "dotfiles";
overlays = with inputs; [ snowfall-flake.overlays."package/flake" ];
system.modules.nixos = with inputs;
[ home-manager.nixosModules.home-manager ];
};
}