dotfiles/flake.nix

148 lines
3.9 KiB
Nix
Raw Normal View History

2023-02-07 11:42:25 +01:00
{
description = "nekowinston's hm flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
darwin = {
2023-02-11 02:37:39 +01:00
url = "github:lnl7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs-unstable";
2023-02-10 07:46:37 +01:00
};
2023-02-07 11:42:25 +01:00
home-manager = {
2023-02-11 02:37:39 +01:00
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs-unstable";
2023-02-07 11:42:25 +01:00
};
nur.url = "github:nix-community/nur";
nekowinston-nur.url = "github:nekowinston/nur";
2023-02-11 02:37:39 +01:00
sops.url = "github:Mic92/sops-nix";
# dev
swayfx.url = "github:willpower3309/swayfx";
pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
flake-utils.url = "github:numtide/flake-utils";
2023-02-07 11:42:25 +01:00
};
outputs = {
self,
darwin,
flake-utils,
2023-02-12 08:05:51 +01:00
home-manager,
nekowinston-nur,
2023-02-07 11:42:25 +01:00
nixpkgs,
nixpkgs-unstable,
nur,
2023-02-12 08:05:51 +01:00
pre-commit-hooks,
2023-02-07 11:42:25 +01:00
sops,
swayfx,
2023-02-07 11:42:25 +01:00
...
2023-02-10 07:46:37 +01:00
}: let
2023-02-18 22:36:15 +01:00
overlays = final: prev: {
unstable = import nixpkgs-unstable {
system = prev.system;
config.allowUnfree = true;
};
nur = import nur {
nurpkgs = prev;
pkgs = prev;
repoOverrides = {
nekowinston = import nekowinston-nur {
pkgs = import nixpkgs-unstable {system = prev.system;};
};
};
};
};
2023-04-03 22:44:03 +02:00
commonHMConfig = {username}: ({
config,
pkgs,
...
}: {
config = {
nixpkgs.overlays = [overlays];
home-manager = {
useGlobalPkgs = true;
backupFileExtension = "backup";
sharedModules = [sops.homeManagerModules.sops ./modules];
users.${username}.imports = [./home];
extraSpecialArgs = {
flakePath =
if pkgs.stdenv.isDarwin
then "/Users/${username}/.config/nixpkgs"
else "/home/${username}/.config/nixpkgs";
};
};
};
});
in
{
nixosConfigurations = {
"futomaki" = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
modules = [
home-manager.nixosModules.home-manager
./machines/common
./machines/futomaki
2023-04-03 22:44:03 +02:00
(commonHMConfig {username = "winston";})
];
};
2023-03-01 21:03:45 +01:00
"bento" = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
modules = [
home-manager.nixosModules.home-manager
./machines/common
2023-03-01 21:03:45 +01:00
./machines/bento
2023-04-03 22:44:03 +02:00
(commonHMConfig {username = "w";})
2023-03-01 21:03:45 +01:00
];
};
};
darwinConfigurations = {
"sashimi" = darwin.lib.darwinSystem rec {
system = "aarch64-darwin";
modules = [
home-manager.darwinModules.home-manager
./machines/common
2023-02-20 09:09:29 +01:00
./machines/sashimi
2023-04-03 22:44:03 +02:00
(commonHMConfig {username = "winston";})
];
};
2023-02-07 11:42:25 +01:00
};
}
// flake-utils.lib.eachDefaultSystem (system: {
checks = {
pre-commit-check = pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
alejandra.enable = true;
2023-02-18 23:25:28 +01:00
commitizen.enable = true;
editorconfig-checker.enable = true;
deadnix.enable = true;
shellcheck.enable = true;
stylua.enable = true;
flake-check = {
2023-03-10 02:49:11 +01:00
enable = false;
types = ["nix"];
language = "system";
entry = "just check";
pass_filenames = false;
};
};
settings.deadnix = {
noLambdaPatternNames = true;
noLambdaArg = true;
};
};
};
2023-04-03 22:44:03 +02:00
devShells.default = let
2023-02-11 02:37:39 +01:00
pkgs = nixpkgs.legacyPackages.${system};
in
pkgs.mkShell {
inherit (self.checks.${system}.pre-commit-check) shellHook;
packages = [
pkgs.just
pkgs.sops
];
};
});
2023-02-07 11:42:25 +01:00
}