58 lines
1.4 KiB
Nix
58 lines
1.4 KiB
Nix
{
|
|
description = "System Configuration";
|
|
|
|
inputs = {
|
|
nixpkgs = {
|
|
url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
hyprland = {
|
|
url = "github:hyprwm/Hyprland";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
hy3 = {
|
|
url = "github:outfoxxed/hy3";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
split-monitor-workspaces = {
|
|
url = "github:Duckonaut/split-monitor-workspaces";
|
|
inputs.hyprland.follows = "hyprland";
|
|
};
|
|
nix-darwin = {
|
|
url = "github:LnL7/nix-darwin/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
sops-nix = {
|
|
url = "github:Mic92/sops-nix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
{ self, nixpkgs, ... }@inputs:
|
|
{
|
|
nixosConfigurations = {
|
|
drew-desktop = (import ./system/hosts/drew-desktop) {
|
|
inherit inputs;
|
|
inherit self;
|
|
inherit nixpkgs;
|
|
};
|
|
mcp = (import ./system/hosts/mcp) {
|
|
inherit inputs;
|
|
inherit self;
|
|
inherit nixpkgs;
|
|
};
|
|
};
|
|
darwinConfigurations = {
|
|
# Removed. See 7c0130f7271f6949e60b9ab59950788d523a9c4d for when the
|
|
# last one was removed.
|
|
};
|
|
features = {
|
|
development = (import ./home-manager/features/development/development.nix);
|
|
};
|
|
};
|
|
}
|