2024-08-30 20:38:37 +03:00
|
|
|
{
|
2024-10-13 19:40:36 +03:00
|
|
|
description = "Elissa's funny little flake";
|
2024-08-30 20:38:37 +03:00
|
|
|
|
|
|
|
nixConfig = {
|
|
|
|
auto-optimise-store = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
2024-12-01 13:22:35 +02:00
|
|
|
nixpkgs-smol.url = "github:nixos/nixpkgs?ref=nixos-unstable-small";
|
2024-08-30 20:38:37 +03:00
|
|
|
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
2025-02-03 04:50:07 +02:00
|
|
|
|
2025-02-03 21:06:58 +02:00
|
|
|
lix-module = {
|
|
|
|
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.92.0.tar.gz";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2025-02-03 04:50:07 +02:00
|
|
|
haipkgs = {
|
|
|
|
url = "git+https://git.blahai.gay/blahai/haipkgs.git";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
};
|
2024-08-30 20:38:37 +03:00
|
|
|
|
2024-12-20 14:50:56 +02:00
|
|
|
haivim = {
|
2024-12-30 02:33:57 +02:00
|
|
|
url = "github:blahai/haivim";
|
2024-12-20 15:11:42 +02:00
|
|
|
inputs = {nixpkgs.follows = "nixpkgs";};
|
2024-12-20 14:50:56 +02:00
|
|
|
};
|
|
|
|
|
2024-09-03 16:26:27 +03:00
|
|
|
ags = {
|
2024-11-14 21:27:42 +02:00
|
|
|
url = "github:Aylur/ags/v1";
|
2024-09-03 16:26:27 +03:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-08-30 20:38:37 +03:00
|
|
|
|
2024-08-31 01:10:17 +03:00
|
|
|
spicetify-nix = {
|
|
|
|
url = "github:Gerg-L/spicetify-nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-08-30 20:38:37 +03:00
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
2024-10-23 17:45:29 +03:00
|
|
|
wezterm.url = "github:wez/wezterm?dir=nix";
|
|
|
|
|
2024-12-20 15:11:42 +02:00
|
|
|
catppuccin = {url = "github:catppuccin/nix";};
|
2024-10-13 20:04:01 +03:00
|
|
|
|
2024-10-13 19:40:36 +03:00
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
2025-01-01 15:55:38 +02:00
|
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake";
|
2024-08-30 20:38:37 +03:00
|
|
|
};
|
|
|
|
|
2024-12-20 15:11:42 +02:00
|
|
|
outputs = {
|
|
|
|
nixpkgs,
|
|
|
|
nixpkgs-smol,
|
2025-02-03 21:06:58 +02:00
|
|
|
lix-module,
|
2024-12-20 15:11:42 +02:00
|
|
|
chaotic,
|
|
|
|
home-manager,
|
|
|
|
...
|
|
|
|
} @ inputs: let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
in {
|
|
|
|
nixosConfigurations = {
|
|
|
|
nyx = nixpkgs.lib.nixosSystem {
|
|
|
|
specialArgs = {
|
|
|
|
inherit inputs;
|
|
|
|
pkgs-smol = import nixpkgs-smol {
|
|
|
|
inherit system;
|
|
|
|
config.allowUnfree = true;
|
2024-12-14 18:55:07 +02:00
|
|
|
};
|
2024-08-30 20:38:37 +03:00
|
|
|
};
|
2024-12-20 15:11:42 +02:00
|
|
|
modules = [
|
|
|
|
./hosts/nyx/configuration.nix
|
2025-02-03 21:06:58 +02:00
|
|
|
lix-module.nixosModules.default
|
2025-02-03 04:50:07 +02:00
|
|
|
home-manager.nixosModules.default
|
2024-12-20 15:11:42 +02:00
|
|
|
chaotic.nixosModules.default
|
|
|
|
];
|
|
|
|
};
|
2024-10-24 00:03:11 +03:00
|
|
|
|
2024-12-20 15:11:42 +02:00
|
|
|
epimetheus = nixpkgs.lib.nixosSystem {
|
|
|
|
specialArgs = {
|
|
|
|
inherit inputs;
|
|
|
|
pkgs-smol = import nixpkgs-smol {inherit system;};
|
2024-10-27 03:07:44 +03:00
|
|
|
};
|
2025-02-03 21:06:58 +02:00
|
|
|
modules = [./hosts/epimetheus/configuration.nix];
|
2024-08-30 20:38:37 +03:00
|
|
|
};
|
|
|
|
};
|
2024-12-20 15:11:42 +02:00
|
|
|
};
|
2024-08-30 20:38:37 +03:00
|
|
|
}
|