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
|
|
|
|
2024-09-20 13:36:27 +02:00
|
|
|
disko = {
|
2024-09-20 16:16:28 +02:00
|
|
|
url = "github:nix-community/disko";
|
2024-09-20 13:36:27 +02:00
|
|
|
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-21 13:25:01 +02:00
|
|
|
|
|
|
|
end-rs = {
|
2024-10-18 13:24:18 +02:00
|
|
|
url = "github:Dr-42/end-rs";
|
2024-09-21 13:25:01 +02:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-10-01 08:44:51 +02:00
|
|
|
|
|
|
|
anyrun = {
|
|
|
|
url = "github:anyrun-org/anyrun";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
anixrun = {
|
|
|
|
url = "github:GaspardCulis/anixrun";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-16 14:13:01 +02:00
|
|
|
};
|
|
|
|
|
2024-09-20 09:20:19 +02:00
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
nixpkgs,
|
2024-09-20 13:36:27 +02:00
|
|
|
disko,
|
2024-09-20 09:20:19 +02:00
|
|
|
home-manager,
|
|
|
|
...
|
2024-09-20 16:01:22 +02:00
|
|
|
} @ inputs: let
|
2024-09-20 09:20:19 +02:00
|
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
in {
|
2024-09-20 13:36:27 +02:00
|
|
|
nixosConfigurations = {
|
|
|
|
Zephyrus = nixpkgs.lib.nixosSystem {
|
2024-09-20 16:20:17 +02:00
|
|
|
extraArgs = {inherit inputs;};
|
2024-09-20 13:36:27 +02:00
|
|
|
modules = [
|
|
|
|
./hosts/Zephyrus
|
|
|
|
disko.nixosModules.disko
|
2024-09-20 15:16:34 +02:00
|
|
|
home-manager.nixosModules.home-manager
|
2024-09-20 13:36:27 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-09-20 15:16:34 +02:00
|
|
|
homeConfigurations = {
|
|
|
|
"gaspard" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
2024-09-16 14:13:01 +02:00
|
|
|
|
2024-09-20 16:01:22 +02:00
|
|
|
extraSpecialArgs = {inherit inputs;};
|
2024-09-20 15:16:34 +02:00
|
|
|
modules = [
|
|
|
|
./users/gaspard.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
"culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
|
|
|
|
inherit pkgs;
|
|
|
|
|
2024-09-20 16:01:22 +02:00
|
|
|
extraSpecialArgs = {inherit inputs;};
|
2024-09-20 15:16:34 +02:00
|
|
|
modules = [
|
|
|
|
./users/culisg.nix
|
|
|
|
];
|
|
|
|
};
|
2024-09-16 14:13:01 +02:00
|
|
|
};
|
2024-09-20 09:12:41 +02:00
|
|
|
|
|
|
|
devShells.${system}.default = pkgs.mkShell {
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
git
|
|
|
|
helix
|
|
|
|
pkgs.home-manager
|
|
|
|
alejandra
|
|
|
|
nil
|
|
|
|
];
|
2024-09-20 09:20:19 +02:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
export EDITOR=hx
|
|
|
|
'';
|
2024-09-20 09:12:41 +02:00
|
|
|
};
|
2024-09-16 14:13:01 +02:00
|
|
|
};
|
|
|
|
}
|