From 7dec9b5ff95e3c7b4be2ff6e40e62d0d23b8f30a Mon Sep 17 00:00:00 2001 From: m3tam3re Date: Mon, 25 Nov 2024 09:41:50 +0100 Subject: [PATCH] -repl-flakes, fix:homeConfiguration module --- flake.nix | 2 +- home/common/default.nix | 10 ++++++++-- hosts/common/users/m3tam3re.nix | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index ca08d39..433aa72 100644 --- a/flake.nix +++ b/flake.nix @@ -54,7 +54,7 @@ "m3tam3re@m3-kratos-vm" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages."x86_64-linux"; extraSpecialArgs = {inherit inputs outputs;}; - modules = [./home/m3tam3re/m3tam3re.nix]; + modules = [./home/m3tam3re/m3-kratos.nix]; }; }; }; diff --git a/home/common/default.nix b/home/common/default.nix index 8b31055..ee82ca1 100644 --- a/home/common/default.nix +++ b/home/common/default.nix @@ -1,4 +1,10 @@ -{ config, lib, outputs, pkgs, ... }: { +{ + config, + lib, + outputs, + pkgs, + ... +}: { nixpkgs = { # You can add overlays here overlays = [ @@ -29,7 +35,7 @@ nix = { package = lib.mkDefault pkgs.nix; settings = { - experimental-features = [ "nix-command" "flakes" "repl-flake" ]; + experimental-features = ["nix-command" "flakes"]; warn-dirty = false; }; }; diff --git a/hosts/common/users/m3tam3re.nix b/hosts/common/users/m3tam3re.nix index 9387387..5ca242e 100644 --- a/hosts/common/users/m3tam3re.nix +++ b/hosts/common/users/m3tam3re.nix @@ -26,5 +26,5 @@ packages = [inputs.home-manager.packages.${pkgs.system}.default]; }; home-manager.users.m3tam3re = - import m3tam3re/${config.networking.hostName}.nix; + import ../../../home/m3tam3re/${config.networking.hostName}.nix; }