-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
38 lines (33 loc) · 895 Bytes
/
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
{
description = "Home Manager configuration of symph";
inputs = {
# packages
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
# common
catppuccin.url = "github:catppuccin/nix";
systems.url = "github:nix-systems/default";
# system
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-wsl.url = "github:nix-community/nixos-wsl";
# home
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
helix.url = "github:helix-editor/helix";
};
outputs =
{ ... }@inputs:
let
flake = import ./modules/flake { inherit inputs; };
in
{
homeConfigurations = flake.profiles.home;
nixosConfigurations = flake.profiles.system;
templates = flake.templates;
devShells = flake.devShells;
};
}