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.

19 lines
482 B

2 years ago
2 years ago
2 years ago
  1. {
  2. description = "Multi-user NixOS example";
  3. inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
  4. inputs.home-manager.url = "github:nix-community/home-manager";
  5. outputs = { self, nixpkgs, home-manager, ... }: {
  6. nixosConfigurations.nixbox = nixpkgs.lib.nixosSystem {
  7. system = "x86_64-linux";
  8. modules = [
  9. home-manager.nixosModule
  10. ./hardware.nix
  11. ./configuration.nix
  12. ./users.nix
  13. ./programs.nix
  14. ];
  15. };
  16. };
  17. }