From 6e81c396c48c0e956c0ace8ac7c712406bafccab Mon Sep 17 00:00:00 2001 From: lulusilly Date: Mon, 1 Sep 2025 00:20:36 -0400 Subject: [PATCH] Going insane Part 2 --- .config/nixos/flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.config/nixos/flake.nix b/.config/nixos/flake.nix index d9c971a..0886e6f 100755 --- a/.config/nixos/flake.nix +++ b/.config/nixos/flake.nix @@ -3,9 +3,24 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; stylix.url = "github:danth/stylix"; + home-manager.url = "github:nix-community/home-manager"; + home-manager.inputs.nixpkgs.follows = "nixpkgs"; stylix.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, ... }@inputs: { + + /* + homeConfigurations = { + mecca = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + ./common.nix + ./mecca/home.nix + ]; + }; + }; + */ + nixosConfigurations = { mecca = nixpkgs.lib.nixosSystem { system = "x86_64-linux";