{ description = "A simple NixOS flake"; inputs = { # NixOS official package source, using the nixos-24.11 branch here nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nur = { url = "github:nix-community/NUR"; inputs.nixpkgs.follows = "nixpkgs"; }; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, nur, home-manager, ... }@inputs: { # Please replace my-nixos with your hostname nixosConfigurations = { anzu = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ # Import the previous configuration.nix we used, # so the old configuration file still takes effect ./configuration.nix # Add NUR overlay nur.modules.nixos.default # Add home-manager home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.users.chase = ./home.nix; } ]; }; }; }; }