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

20 lines
448 B

2 years ago
  1. {
  2. description = "A very basic flake";
  3. inputs = {
  4. nixpkgs.url = "github:nixos/nixpkgs";
  5. home-manager.url = "github:nix-community/home-manager";
  6. };
  7. outputs = { self, nixpkgs, home-manager }: {
  8. nixosConfigurations.nixbox = nixpkgs.lib.nixosSystem {
  9. system = "x86_64-linux";
  10. modules = [
  11. home-manager.nixosModule
  12. ./configuration.nix
  13. ./rices/cwm.nix
  14. ./hardware.nix
  15. ];
  16. };
  17. };
  18. }