nix-config/flake.nix

127 lines
2.9 KiB
Nix
Raw Normal View History

2021-02-05 16:25:39 +01:00
{
2021-03-07 19:30:33 +01:00
description = "NixOS configuration with flakes";
2021-02-05 16:25:39 +01:00
inputs = {
futils = {
type = "github";
owner = "numtide";
repo = "flake-utils";
ref = "master";
};
home-manager = {
type = "github";
owner = "nix-community";
repo = "home-manager";
ref = "master";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable";
};
nur = {
type = "github";
owner = "nix-community";
repo = "NUR";
ref = "master";
};
2021-02-05 16:25:39 +01:00
};
2021-05-31 23:01:21 +02:00
outputs =
inputs @
{ self
, futils
, home-manager
, nixpkgs
, nur
}:
2021-02-18 21:19:11 +01:00
let
inherit (futils.lib) eachDefaultSystem;
lib = nixpkgs.lib.extend (self: super: {
my = import ./lib { inherit inputs; pkgs = nixpkgs; lib = self; };
});
defaultModules = [
2021-03-08 19:59:08 +01:00
({ ... }: {
# Let 'nixos-version --json' know about the Git revision
system.configurationRevision = self.rev or "dirty";
})
{
nixpkgs.overlays = (lib.attrValues self.overlays) ++ [
nur.overlay
];
}
home-manager.nixosModules.home-manager
2021-05-30 01:20:14 +02:00
({ config, ... }: {
home-manager.users.${config.my.username} = import ./home;
# Nix Flakes compatibility
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2021-05-30 01:20:14 +02:00
})
# Include generic settings
./modules
# Include bundles of settings
./profiles
# Include my secrets
./secrets
];
buildHost = name: system: lib.nixosSystem {
2021-02-18 21:19:11 +01:00
inherit system;
modules = defaultModules ++ [
(./. + "/machines/${name}")
2021-02-05 16:25:39 +01:00
];
specialArgs = {
# Use my extended lib in NixOS configuration
inherit lib;
# Inject inputs to use them in global registry
inherit inputs;
};
2021-02-18 21:19:11 +01:00
};
in
eachDefaultSystem
(system:
2021-05-31 23:01:21 +02:00
let
pkgs = nixpkgs.legacyPackages.${system};
in
rec {
apps = {
diff-flake = futils.lib.mkApp { drv = packages.diff-flake; };
};
defaultApp = apps.diff-flake;
2021-05-31 23:01:21 +02:00
devShell = pkgs.mkShell {
name = "NixOS-config";
2021-05-31 23:01:21 +02:00
buildInputs = with pkgs; [
git-crypt
gitAndTools.pre-commit
gnupg
nixpkgs-fmt
];
};
2021-05-31 23:01:21 +02:00
packages = import ./pkgs { inherit pkgs; };
}) // {
overlay = self.overlays.pkgs;
2021-05-09 00:06:12 +02:00
overlays = import ./overlays // {
lib = final: prev: { inherit lib; };
pkgs = final: prev: { ambroisie = import ./pkgs { pkgs = prev; }; };
};
nixosConfigurations = lib.mapAttrs buildHost {
2021-04-02 14:00:21 +02:00
aramis = "x86_64-linux";
2021-02-18 21:19:11 +01:00
porthos = "x86_64-linux";
};
2021-02-05 16:25:39 +01:00
};
}