From cc6d5127c8b71a13222ba7f69b822507a2284cec Mon Sep 17 00:00:00 2001 From: Cori Barker Date: Mon, 29 Jun 2026 20:42:37 +0100 Subject: Initial Commit --- flake.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..73a3331 --- /dev/null +++ b/flake.nix @@ -0,0 +1,29 @@ +{ + description = "My Home Manager"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; + + outputs = { nixpkgs, home-manager, ... }: + let + system = "x86_64-linux"; + + pkgs = import nixpkgs { + inherit system; + config.allowUnfree = true; + }; + in { + homeConfigurations.cori = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + ./home.nix + ]; + }; + }; +} -- cgit v1.2.3