You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
430 B
Nix

{
description = "A simple NixOS flake";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.primus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/primus
./shell
./system
./desktop
./desktop/autologin.nix
./desktop/plasma.nix
];
};
};
}