48 lines
1.3 KiB
Nix
48 lines
1.3 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";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations = {
|
|
drew-desktop = (import ./system/hosts/drew-desktop) {
|
|
inherit inputs;
|
|
inherit self;
|
|
inherit nixpkgs;
|
|
};
|
|
};
|
|
# nixosConfigurations.drew-desktop = nixpkgs.lib.nixosSystem {
|
|
# system = "x86_64-linux";
|
|
# modules = [
|
|
# ./configuration.nix
|
|
# ./hardware-configuration.nix
|
|
# inputs.home-manager.nixosModules.home-manager
|
|
# {
|
|
# home-manager.useGlobalPkgs = true;
|
|
# home-manager.users.drew = import ./home-manager/drew.nix;
|
|
# home-manager.extraSpecialArgs = { inherit inputs; };
|
|
# }
|
|
# ];
|
|
# specialArgs = { inherit inputs; };
|
|
# };
|
|
};
|
|
}
|