2024-10-18 17:38:09 -07:00
|
|
|
{
|
|
|
|
description = "marleyOS";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
home-manager = {
|
|
|
|
url = "github:nix-community/home-manager";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-19 09:42:19 -07:00
|
|
|
|
2024-11-02 22:21:19 -07:00
|
|
|
nixgl.url = "github:nix-community/nixGL";
|
|
|
|
|
2024-10-19 17:25:26 -07:00
|
|
|
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
2024-10-18 17:38:09 -07:00
|
|
|
};
|
|
|
|
|
2024-11-02 15:35:48 -07:00
|
|
|
outputs =
|
|
|
|
{
|
|
|
|
nixpkgs,
|
|
|
|
home-manager,
|
|
|
|
...
|
|
|
|
}@inputs:
|
|
|
|
{
|
|
|
|
homeConfigurations."marley" =
|
|
|
|
let
|
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in
|
|
|
|
home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
2024-10-18 17:38:09 -07:00
|
|
|
|
2024-11-02 22:21:19 -07:00
|
|
|
extraSpecialArgs = with inputs; {
|
|
|
|
inherit nixgl;
|
|
|
|
};
|
|
|
|
|
2024-11-02 15:35:48 -07:00
|
|
|
modules = [
|
|
|
|
./home
|
|
|
|
inputs.rose-pine.homeManagerModules.rose-pine
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-10-18 17:38:09 -07:00
|
|
|
}
|