From 8e8a81317784982545fef27a0685a601ca7f68e4 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sat, 15 Feb 2025 16:23:33 +0100 Subject: [PATCH] Add home-manager tool --- nixos/configuration.nix | 7 +++---- 1 file 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 -- 2.47.2