dotfiles/flake.nix

88 lines
2 KiB
Nix
Raw Normal View History

2024-08-02 11:12:36 +02:00
{
description = "NixOS configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
{
self,
nixpkgs,
2024-08-02 14:09:42 +02:00
colmena,
2024-08-02 11:12:36 +02:00
home-manager,
...
}@inputs:
let
inherit (self) outputs;
mkHome =
modules:
home-manager.lib.homeManagerConfiguration {
2024-08-02 14:09:42 +02:00
modules = [ ./home/common ] ++ modules;
2024-08-02 11:12:36 +02:00
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = {
inherit inputs outputs;
};
};
2024-08-02 14:09:42 +02:00
mkHost =
modules:
nixpkgs.lib.nixosSystem {
specialArgs = {
inherit inputs outputs;
};
system = "x86_64-linux";
modules = [ ./common ] ++ modules;
};
2024-08-02 11:12:36 +02:00
supportedSystems = [
"x86_64-linux"
"aarch64-linux"
];
forEachSystem =
f:
builtins.listToAttrs (
map (system: {
name = system;
value = f system;
}) supportedSystems
);
systemBits = forEachSystem (system: rec {
inherit system;
pkgs = import nixpkgs {
localSystem = system;
overlays = [ ];
};
});
forEachSystem' = f: forEachSystem (system: (f systemBits.${system}));
inherit (nixpkgs) lib;
in
{
overlays = import ./overlays { inherit inputs outputs; };
devShells = forEachSystem' (
{ system, pkgs, ... }:
{
2024-08-02 14:09:42 +02:00
default = pkgs.mkShell { packages = [ pkgs.colmena ]; };
2024-08-02 11:12:36 +02:00
}
);
homeConfigurations = {
2024-08-02 14:09:42 +02:00
"dln@dinky" = mkHome [ ./home/dln/dinky.nix ];
"dln@nemo" = mkHome [ ./home/dln/nemo.nix ];
"lsjostro@nemo" = mkHome [ ./home/lsjostro/nemo.nix ];
};
nixosConfigurations = {
dinky = mkHost [ ./hosts/dinky ];
nemo = mkHost [ ./hosts/nemo ];
2024-08-02 11:12:36 +02:00
};
};
}