dotfiles.nix/flake.nix

117 lines
3.8 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-04-28 13:49:41 +08:00
# Nixpkgs branches
master.url = "github:nixos/nixpkgs/master";
stable.url = "github:nixos/nixpkgs/nixos-22.11";
nixos-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
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-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
# My personal flakes
2023-05-02 16:41:10 +08:00
xmonad-jsm.url = "github:sajenim/xmonad-jsm";
2023-05-09 09:23:03 +08:00
# xmonad-jsm.url = "path:/home/sajenim/xmonad-jsm";
2023-05-02 16:41:10 +08:00
xmobar-jsm.url = "github:sajenim/xmobar-jsm";
2023-05-09 09:23:03 +08:00
# xmobar-jsm.url = "path:/home/sajenim/xmobar-jsm";
2023-04-28 13:49:41 +08:00
2023-05-04 20:41:52 +08:00
# Github repos
2023-05-06 00:56:56 +08:00
jade = {
url = "github:sajenim/jade";
2023-05-09 09:23:03 +08:00
# url = "path:/home/sajenim/Projects/jade";
2023-05-06 00:56:56 +08:00
flake = false;
};
2023-05-04 20:41:52 +08:00
neovim-jsm = {
url = "github:sajenim/neovim-jsm";
2023-05-09 09:23:03 +08:00
# url = "path:/home/sajenim/Projects/neovim-jsm";
2023-05-04 20:41:52 +08:00
flake = false;
};
2023-04-28 13:49:41 +08:00
# Default branch
nixpkgs.follows = "nixos-unstable";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
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-07 23:30:59 +08:00
./home-manager/sajenim.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 = [
./home-manager/admin.nix
];
};
2023-04-03 22:41:22 +08:00
};
};
}