dotfiles.nix/flake.nix

100 lines
3.5 KiB
Nix
Raw Normal View History

2023-04-03 22:41:22 +08:00
{
2023-04-05 23:18:54 +08:00
description = "NixOS + Home Manager configuration with flakes";
2023-04-03 22:41:22 +08:00
inputs = {
2023-05-15 21:11:30 +08:00
# Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
# You can access packages and modules from different nixpkgs revs
# at the same time. Here's an working example:
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
2023-05-04 13:29:02 +08:00
2023-04-03 22:41:22 +08:00
# Home manager
2023-04-28 13:49:41 +08:00
home-manager.url = "github:nix-community/home-manager/master";
2023-05-15 21:11:30 +08:00
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-04-03 22:41:22 +08:00
2023-04-05 23:18:54 +08:00
# Add any other flake you might need
nixpkgs-f2k.url = "github:fortuneteller2k/nixpkgs-f2k";
2023-05-04 13:29:02 +08:00
2023-05-15 21:11:30 +08:00
# Developer environments
xmonad-config.url = "path:home-manager/common/jade/xmonad/xmonad-config";
xmobar-config.url = "path:home-manager/common/jade/xmobar/xmobar-config";
2023-04-03 22:41:22 +08:00
};
outputs = { self, nixpkgs, home-manager, ... }@inputs:
let
inherit (self) outputs;
forAllSystems = nixpkgs.lib.genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
in
2023-04-05 23:18:54 +08:00
{
2023-04-03 22:41:22 +08:00
# Your custom packages
# Acessible through 'nix build', 'nix shell', etc
packages = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./pkgs { inherit pkgs; }
);
# Devshell for bootstrapping
# Acessible through 'nix develop' or 'nix-shell' (legacy)
devShells = forAllSystems (system:
let pkgs = nixpkgs.legacyPackages.${system};
in import ./shell.nix { inherit pkgs; }
);
# Your custom packages and modifications, exported as overlays
overlays = import ./overlays { inherit inputs; };
# Reusable nixos modules you might want to export
# These are usually stuff you would upstream into nixpkgs
nixosModules = import ./modules/nixos;
# Reusable home-manager modules you might want to export
# These are usually stuff you would upstream into home-manager
homeManagerModules = import ./modules/home-manager;
# NixOS configuration entrypoint
# Available through 'nixos-rebuild --flake .#your-hostname'
nixosConfigurations = {
2023-04-05 23:18:54 +08:00
fuchsia = nixpkgs.lib.nixosSystem {
2023-04-03 22:41:22 +08:00
specialArgs = { inherit inputs outputs; };
modules = [
# > Our main nixos configuration file <
2023-05-07 23:30:59 +08:00
./nixos/fuchsia/configuration.nix
2023-04-03 22:41:22 +08:00
];
};
2023-05-13 23:55:59 +08:00
lavender = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [
# > Our main nixos configuration file <
./nixos/lavender/configuration.nix
];
};
2023-04-03 22:41:22 +08:00
};
# Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = {
2023-04-05 23:18:54 +08:00
"sajenim@fuchsia" = home-manager.lib.homeManagerConfiguration {
2023-04-03 22:41:22 +08:00
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
extraSpecialArgs = { inherit inputs outputs; };
modules = [
# > Our main home-manager configuration file <
2023-05-15 21:11:30 +08:00
./home-manager/sajenim/home.nix
2023-04-03 22:41:22 +08:00
];
};
2023-05-13 23:55:59 +08:00
"admin@lavender" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.aarch64-linux;
extraSpecialArgs = { inherit inputs outputs; };
modules = [
2023-05-15 21:11:30 +08:00
./home-manager/admin/home.nix
2023-05-13 23:55:59 +08:00
];
};
2023-04-03 22:41:22 +08:00
};
};
}