pointfichiers/flake.nix

37 lines
827 B
Nix
Raw Normal View History

2024-09-16 14:13:01 +02:00
{
description = "Configuration Home Manager jaajesque";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-16 14:59:29 +02:00
# Hyprland
hyprland = {
url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
follows = "hy3/hyprland";
};
hy3 = {
url = "github:outfoxxed/hy3";
};
2024-09-16 14:13:01 +02:00
};
2024-09-16 14:59:29 +02:00
outputs = { self, nixpkgs, home-manager, hy3, ... }:
2024-09-16 14:13:01 +02:00
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
homeConfigurations."culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
2024-09-16 14:59:29 +02:00
extraSpecialArgs = {inherit hy3;};
2024-09-16 14:13:01 +02:00
modules = [
./nix/profiles/culisg.nix
];
};
};
}