forked from nico/dots
25 lines
594 B
Nix
25 lines
594 B
Nix
{
|
|
description = "nico's linux system.";
|
|
|
|
inputs = {
|
|
# NixOS official package source, using the unstable branch here
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.pluto = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
|
|
./modules/shell.nix
|
|
./modules/users.nix
|
|
./modules/hyprland.nix
|
|
./modules/applications.nix
|
|
|
|
./hosts/pluto/conf.nix
|
|
./hosts/pluto/hardware-configuration.nix
|
|
];
|
|
};
|
|
};
|
|
}
|