43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{
|
|
description = "srpnix";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
|
|
hyprland.url = "github:hyprwm/Hyprland";
|
|
hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; inputs.hyprland.follows = "hyprland" };
|
|
hyprland-split-monitor-workspaces = { url = "github:Duckonaut/split-monitor-workspaces"; input.hyprland.follows = "hyprland"; }
|
|
|
|
home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs" };
|
|
};
|
|
|
|
outputs = { nixpkgs, ... } @ inputs: {
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./configuration.nix
|
|
./hardware-configuration.nix
|
|
./graphics.nix
|
|
./sound.nix
|
|
./usb.nix
|
|
./peripherals.nix
|
|
./time.nix
|
|
./bootloader.nix
|
|
./nix-settings.nix
|
|
./nixpkgs.nix
|
|
./kernel.nix
|
|
./desktop.nix
|
|
./theme.nix
|
|
./internationalisation.nix
|
|
./security.nix
|
|
./services.nix
|
|
./printing.nix
|
|
./env.nix
|
|
./network.nix
|
|
./users.nix
|
|
./virtualisation.nix
|
|
./programming.nix
|
|
./terminal.nix
|
|
];
|
|
};
|
|
}
|