From 12438a9c8d5412258f976bb09881258462189222 Mon Sep 17 00:00:00 2001 From: mtgmonkey Date: Sun, 28 Dec 2025 21:06:06 +0100 Subject: home --- home/flake.nix | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 home/flake.nix (limited to 'home/flake.nix') diff --git a/home/flake.nix b/home/flake.nix new file mode 100644 index 0000000..766ff99 --- /dev/null +++ b/home/flake.nix @@ -0,0 +1,43 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nur = { + url = "github:nix-community/NUR"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + nvf = { + url = "github:notashelf/nvf"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + stylix = { + url = "github:danth/stylix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + outputs = { + nixpkgs, + home-manager, + stylix, + nvf, + nur, + ... + }: let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in { + homeConfigurations."mtgmonkey" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + stylix.homeModules.stylix + nvf.homeManagerModules.default + nur.modules.homeManager.default + + ./home.nix + ]; + }; + }; +} -- cgit v1.3