118 lines
4.3 KiB
Nix
118 lines
4.3 KiB
Nix
|
|
{
|
|
description = "Starter Configuration for NixOS and MacOS";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:dustinlyons/nixpkgs/master";
|
|
|
|
# My nixpkgs fork includes a feather-font package (https://github.com/dustinlyons/feather-font)
|
|
# and a timeout setting for Emacs daemon. If you don't want to use my it, follow these steps to use the official repo instead:
|
|
#
|
|
# Change the flake input
|
|
# - Official repository
|
|
# nixpkgs.url = "github:NixOS/nixpkgs/master";
|
|
#
|
|
# Remove this setting and retry builds if they sometimes timeout:
|
|
# - NixOS configuration
|
|
# https://github.com/dustinlyons/nixos-config/blob/8114714c10d61cd5da34df842dd5bac0301f688a/nixos/default.nix#L280
|
|
#
|
|
# Replace feather-font with another font:
|
|
# - Rofi:
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/config/rofi/launcher.rasi#L42
|
|
#
|
|
# - Polybar:
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/home-manager.nix#L21
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/config/rofi/styles.rasi#L49
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/config/rofi/powermenu.rasi#L49
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/config/rofi/networkmenu.rasi#L49
|
|
#
|
|
# - Fonts:
|
|
# https://github.com/dustinlyons/nixos-config/blob/1290219734b53b26d9c20d13989846788462ff26/nixos/default.nix#L286
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
darwin = {
|
|
url = "github:LnL7/nix-darwin/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nix-homebrew = {
|
|
url = "github:zhaofengli-wip/nix-homebrew";
|
|
};
|
|
homebrew-bundle = {
|
|
url = "github:homebrew/homebrew-bundle";
|
|
flake = false;
|
|
};
|
|
homebrew-core = {
|
|
url = "github:homebrew/homebrew-core";
|
|
flake = false;
|
|
};
|
|
homebrew-cask = {
|
|
url = "github:homebrew/homebrew-cask";
|
|
flake = false;
|
|
};
|
|
disko = {
|
|
url = "github:nix-community/disko";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
outputs = { self, darwin, nix-homebrew, homebrew-bundle, homebrew-core, homebrew-cask, home-manager, nixpkgs, disko } @inputs:
|
|
let
|
|
user = "dekker1";
|
|
linuxSystems = [ "x86_64-linux" "aarch64-linux" ];
|
|
darwinSystems = [ "aarch64-darwin" ];
|
|
forAllLinuxSystems = f: nixpkgs.lib.genAttrs linuxSystems (system: f system);
|
|
forAllDarwinSystems = f: nixpkgs.lib.genAttrs darwinSystems (system: f system);
|
|
forAllSystems = f: nixpkgs.lib.genAttrs (linuxSystems ++ darwinSystems) (system: f system);
|
|
devShell = system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
default = with pkgs; mkShell {
|
|
nativeBuildInputs = with pkgs; [ bashInteractive git age age-plugin-yubikey ];
|
|
shellHook = with pkgs; ''
|
|
export EDITOR=vim
|
|
'';
|
|
};
|
|
};
|
|
in
|
|
{
|
|
devShells = forAllSystems devShell;
|
|
darwinConfigurations = let user = "dekker1"; in {
|
|
macos = darwin.lib.darwinSystem {
|
|
system = "aarch64-darwin";
|
|
specialArgs = inputs;
|
|
modules = [
|
|
nix-homebrew.darwinModules.nix-homebrew
|
|
home-manager.darwinModules.home-manager
|
|
{
|
|
nix-homebrew = {
|
|
enable = true;
|
|
user = "${user}";
|
|
taps = {
|
|
"homebrew/homebrew-core" = homebrew-core;
|
|
"homebrew/homebrew-cask" = homebrew-cask;
|
|
"homebrew/homebrew-bundle" = homebrew-bundle;
|
|
};
|
|
mutableTaps = false;
|
|
autoMigrate = true;
|
|
};
|
|
}
|
|
./darwin
|
|
];
|
|
};
|
|
};
|
|
nixosConfigurations = nixpkgs.lib.genAttrs linuxSystems (system: nixpkgs.lib.nixosSystem {
|
|
system = system;
|
|
specialArgs = inputs;
|
|
modules = [
|
|
disko.nixosModules.disko
|
|
home-manager.nixosModules.home-manager {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.${user} = import ./nixos/home-manager.nix;
|
|
}
|
|
./nixos
|
|
];
|
|
});
|
|
};
|
|
}
|