From 6ffafdca8e29f40a1c3a786cb1d25c45d078da46 Mon Sep 17 00:00:00 2001 From: osbm Date: Mon, 13 Jan 2025 20:38:04 +0300 Subject: [PATCH] add home manager to ymir --- hosts/ymir/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index a7bfd3f..4bbbc64 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -28,6 +28,11 @@ networking.hostName = "ymir"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. + + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.osbm = import ../../modules/home.nix { stateVersion = "24.11"; }; + # Configure network proxy if necessary # networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";