From 1d9c7afc4d9ba6f8e1364d14cda2f17a9b30a5b5 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sun, 29 Mar 2026 17:30:50 +0300 Subject: [PATCH] remove home manager from flake --- flake.nix | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/flake.nix b/flake.nix index 94f4e65..dad3bf9 100644 --- a/flake.nix +++ b/flake.nix @@ -3,27 +3,12 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; - - home-manager = { - url = "github:nix-community/home-manager/release-25.11"; - # The `follows` keyword in inputs is used for inheritance. - # Here, `inputs.nixpkgs` of home-manager is kept consistent with - # the `inputs.nixpkgs` of the current flake, - # to avoid problems caused by different versions of nixpkgs. - inputs.nixpkgs.follows = "nixpkgs"; - }; }; - outputs = { self, nixpkgs, home-manager, ... }@inputs: { + outputs = { self, nixpkgs, ... }@inputs: { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { modules = [ ./configuration.nix - home-manager.nixosModules.home-manager - { - home-manager.useGlobalPkgs = true; - home-manager.useUserPackages = true; - home-manager.users.yisroel = import ./home-manager/home.nix; - } ]; }; };