marleyos/flake.nix

93 lines
2 KiB
Nix
Raw Normal View History

{
description = "marleyOS";
2024-12-03 02:51:46 +00:00
outputs = inputs:
inputs.snowfall-lib.mkFlake {
inherit inputs;
src = ./.;
snowfall = {
namespace = "marleyos";
title = "marleyOS";
};
channels-config = {
allowUnfree = true;
};
overlays = with inputs; [
lix.overlays.default
2025-01-12 00:21:42 +00:00
nur.overlays.default
2025-03-01 01:28:07 +00:00
niri-flake.overlays.niri
];
systems.modules.nixos = with inputs; [
2025-03-02 18:41:56 +00:00
stylix.nixosModules.stylix
2025-03-01 01:28:07 +00:00
niri-flake.nixosModules.niri
];
systems.modules.darwin = with inputs; [
lix.nixosModules.default
];
2024-11-16 03:52:27 +00:00
homes.modules = with inputs; [
rose-pine.homeManagerModules.rose-pine
];
2024-11-16 03:52:27 +00:00
outputs-builder = channels: {
2024-11-25 05:31:46 +00:00
formatter = channels.nixpkgs.alejandra;
};
};
inputs = {
2025-02-28 02:25:20 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
2024-11-22 05:27:08 +00:00
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
2025-01-12 00:21:42 +00:00
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
lix = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
snowfall-lib = {
url = "github:snowfallorg/lib";
inputs.nixpkgs.follows = "nixpkgs";
};
darwin = {
url = "github:LnL7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs";
};
home-manager = {
2025-02-28 02:25:20 +00:00
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-10-19 16:42:19 +00:00
nixgl = {
url = "github:nix-community/nixGL";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-03-02 18:41:56 +00:00
stylix.url = "github:danth/stylix/release-24.11";
2024-11-03 07:10:01 +00:00
2025-03-02 18:41:56 +00:00
niri-flake.url = "github:sodiboo/niri-flake";
2024-11-22 05:27:08 +00:00
2025-01-09 16:08:30 +00:00
wezterm = {
url = "github:wez/wezterm?dir=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-03-02 18:41:56 +00:00
marleyvim.url = "git+https://codewith.babesonthe.net/punkfairie/marleyvim";
2024-11-18 03:01:26 +00:00
rofi-themes = {
url = "git+https://codewith.babesonthe.net/punkfairie/rofi-themes";
flake = false;
};
};
}