diff options
| author | Dominik Kaiser | 2025-02-15 16:23:33 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-15 16:23:33 +0100 |
| commit | 8e8a81317784982545fef27a0685a601ca7f68e4 (patch) | |
| tree | ab2d4f45de97a3d1967fad2330d8968d6a0b01bc | |
| parent | 61a06f286ae470acce6c93703f4e535ac5d9e3a7 (diff) | |
| download | nixos-8e8a81317784982545fef27a0685a601ca7f68e4.tar.gz nixos-8e8a81317784982545fef27a0685a601ca7f68e4.zip | |
Add home-manager tool
| -rw-r--r-- | nixos/configuration.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 48dd7bd..5823306 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, ... }: +{ inputs, lib, config, pkgs, ... }: { imports = @@ -98,9 +98,8 @@ # List packages installed in system profile. To search, run: # $ nix search wget - environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - # wget + environment.systemPackages = [ + inputs.home-manager.packages.${pkgs.system}.default ]; # Some programs need SUID wrappers, can be configured further or are |
