2023-07-23 18:44:51 +00:00
|
|
|
{
|
|
|
|
description = "A Very Flakey Home Manager";
|
|
|
|
|
2023-07-28 22:15:33 +00:00
|
|
|
# Initial layout shamelessly stolen from:
|
|
|
|
# - https://github.com/Misterio77/nix-starter-configs/
|
|
|
|
# - https://github.com/Misterio77/nix-config/
|
|
|
|
|
2023-07-23 21:09:58 +00:00
|
|
|
inputs = {
|
2024-05-01 16:00:29 +00:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2023-07-27 14:41:24 +00:00
|
|
|
# You can access packages and modules from different nixpkgs revs
|
|
|
|
# at the same time. Here's a working example:
|
2024-05-01 16:00:29 +00:00
|
|
|
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11";
|
|
|
|
# Also see the 'stable-packages' overlay at 'nix/overlays/default.nix'.
|
2023-07-27 14:41:24 +00:00
|
|
|
|
|
|
|
# Home manager
|
2023-07-23 21:09:58 +00:00
|
|
|
home-manager = {
|
2024-05-01 16:00:29 +00:00
|
|
|
url = "github:nix-community/home-manager";
|
2023-07-23 21:09:58 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-27 14:41:24 +00:00
|
|
|
|
2023-07-28 22:15:33 +00:00
|
|
|
# Hardware
|
|
|
|
hardware.url = "github:nixos/nixos-hardware";
|
2023-07-29 02:44:49 +00:00
|
|
|
|
|
|
|
# Firefox add-ons
|
|
|
|
firefox-addons = {
|
|
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2023-07-23 21:09:58 +00:00
|
|
|
};
|
2023-07-23 18:44:51 +00:00
|
|
|
|
2023-08-03 21:38:30 +00:00
|
|
|
outputs = { self, nixpkgs, home-manager, ... } @inputs:
|
2023-07-23 21:09:58 +00:00
|
|
|
let
|
2023-07-26 21:46:31 +00:00
|
|
|
inherit (self) outputs;
|
2023-07-28 22:15:33 +00:00
|
|
|
lib = nixpkgs.lib // home-manager.lib;
|
|
|
|
systems = [ "x86_64-linux" "aarch64-linux" ];
|
|
|
|
forEachSystem = f: lib.genAttrs systems (sys: f pkgsFor.${sys});
|
|
|
|
pkgsFor = nixpkgs.legacyPackages;
|
2023-07-23 22:32:36 +00:00
|
|
|
in
|
2023-07-28 22:15:33 +00:00
|
|
|
{
|
|
|
|
inherit lib;
|
2023-08-04 13:53:54 +00:00
|
|
|
nixosModules = import ./modules/nixos;
|
|
|
|
homeManagerModules = import ./modules/home-manager;
|
2023-07-26 21:46:31 +00:00
|
|
|
|
2023-08-04 13:53:54 +00:00
|
|
|
overlays = import ./overlays { inherit inputs outputs; };
|
2023-07-28 22:15:33 +00:00
|
|
|
|
2023-08-04 13:53:54 +00:00
|
|
|
packages = forEachSystem (pkgs: import ./pkgs { inherit pkgs; });
|
2023-07-28 22:15:33 +00:00
|
|
|
devShells = forEachSystem (pkgs: import ./shell.nix { inherit pkgs; });
|
|
|
|
formatter = forEachSystem (pkgs: pkgs.nixpkgs-fmt);
|
|
|
|
|
2023-07-26 21:46:31 +00:00
|
|
|
nixosConfigurations = {
|
2023-07-28 22:15:33 +00:00
|
|
|
# Pixelbook converted to NixOS
|
|
|
|
pixnix = lib.nixosSystem {
|
2023-08-04 13:53:54 +00:00
|
|
|
modules = [ ./hosts/pixnix ];
|
2023-07-26 21:46:31 +00:00
|
|
|
specialArgs = { inherit inputs outputs; };
|
2023-07-23 22:32:36 +00:00
|
|
|
};
|
2023-07-26 21:46:31 +00:00
|
|
|
};
|
2023-07-23 18:44:51 +00:00
|
|
|
|
2023-07-27 14:41:24 +00:00
|
|
|
# Standalone home-manager configuration entrypoint
|
|
|
|
# Available through 'home-manager --flake .#your-username@your-hostname'
|
2023-07-26 21:46:31 +00:00
|
|
|
homeConfigurations = {
|
2023-07-28 22:15:33 +00:00
|
|
|
"john@penguin-duet" = lib.homeManagerConfiguration {
|
2023-08-04 13:53:54 +00:00
|
|
|
modules = [ ./home/penguin-duet.nix ];
|
2023-07-28 22:15:33 +00:00
|
|
|
pkgs = pkgsFor.aarch64-linux;
|
2023-07-27 14:41:24 +00:00
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
2023-08-05 22:02:46 +00:00
|
|
|
"john@penguin-fw" = lib.homeManagerConfiguration {
|
|
|
|
modules = [ ./home/penguin-fw.nix ];
|
|
|
|
pkgs = pkgsFor.x86_64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
2023-07-29 02:56:41 +00:00
|
|
|
"john@pixnix" = lib.homeManagerConfiguration {
|
2023-08-04 13:53:54 +00:00
|
|
|
modules = [ ./home/pixnix.nix ];
|
2023-07-29 02:56:41 +00:00
|
|
|
pkgs = pkgsFor.x86_64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
2023-08-05 22:04:36 +00:00
|
|
|
"john@volly" = lib.homeManagerConfiguration {
|
2024-05-03 15:34:12 +00:00
|
|
|
modules = [ ./home/generic.nix ];
|
|
|
|
pkgs = pkgsFor.x86_64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
|
|
|
"john@immich" = lib.homeManagerConfiguration {
|
|
|
|
modules = [ ./home/generic.nix ];
|
2023-08-05 22:04:36 +00:00
|
|
|
pkgs = pkgsFor.x86_64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
2024-01-25 22:58:06 +00:00
|
|
|
"john@doc" = lib.homeManagerConfiguration {
|
2024-05-03 15:34:12 +00:00
|
|
|
modules = [ ./home/generic.nix ];
|
2024-01-25 22:58:06 +00:00
|
|
|
pkgs = pkgsFor.x86_64-linux;
|
|
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
|
|
};
|
2023-07-23 21:09:58 +00:00
|
|
|
};
|
|
|
|
};
|
2023-07-27 14:41:24 +00:00
|
|
|
}
|