punkfairie
5bffc52df8
Switch to nixfmt as when I was adding treesitter injected lang hints, Alejandra was not formatting those comments in a way I liked. Turns out I like the nixfmt style in general better.
36 lines
744 B
Nix
36 lines
744 B
Nix
{
|
|
description = "marleyOS";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
nixpkgs,
|
|
home-manager,
|
|
...
|
|
}@inputs:
|
|
{
|
|
homeConfigurations."marley" =
|
|
let
|
|
system = "x86_64-linux";
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
home-manager.lib.homeManagerConfiguration {
|
|
inherit pkgs;
|
|
|
|
modules = [
|
|
./home
|
|
inputs.rose-pine.homeManagerModules.rose-pine
|
|
];
|
|
};
|
|
};
|
|
}
|