Home Manager: Difference between revisions
Add link for a keyword |
update example to 24.11 |
||
Line 57: | Line 57: | ||
{ | { | ||
inputs = { | inputs = { | ||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24. | nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; | ||
home-manager = { | home-manager = { | ||
url = "github:nix-community/home-manager/release-24. | url = "github:nix-community/home-manager/release-24.11"; | ||
inputs.nixpkgs.follows = "nixpkgs" | inputs.nixpkgs.follows = "nixpkgs" | ||
}; | }; | ||
}; | }; | ||
outputs = { self, nixpkgs, home-manager, ... }@inputs: | outputs = { self, nixpkgs, home-manager, ... }@inputs: | ||
nixosConfigurations. | nixosConfigurations.exampleMachine = nixosConfiguration "exampleMachine" | ||
system = "x86_64-linux"; | system = "x86_64-linux"; | ||
modules = [ | modules = [ |