-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
62 lines (50 loc) · 1.43 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
description = "rice-cracker-dev's personal flakes";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nur.url = "github:nix-community/NUR";
# use nix-colors to handle colorschemes
nix-colors.url = "github:misterio77/nix-colors";
# editor
nvf-config.url = "github:rice-cracker-dev/nvf-config";
# hyprwm
hyprland.url = "git+https://github.com/hyprwm/Hyprland";
plasma-manager = {
url = "github:nix-community/plasma-manager";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};
# aylur gtk shell
ags.url = "github:Aylur/ags/v2";
astal.url = "github:Aylur/astal";
# quickshell
quickshell = {
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
# spicetify
spicetify.url = "github:the-argus/spicetify-nix";
# secrets manager
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {nixpkgs, ...} @ inputs: let
inherit (nixpkgs) lib;
username = "khoa";
in {
nixosConfigurations = {
laptop = lib.nixosSystem {
specialArgs = {inherit inputs username;};
modules = [
./hosts/laptop/nixos/configuration.nix
];
};
};
};
}