From e28d7dbbd537371bac22aa2576bfbe9809c04bbf Mon Sep 17 00:00:00 2001 From: sils Date: Tue, 7 Feb 2023 20:45:04 +0100 Subject: Update: Added home-manager and specify nixpkgs.url --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 37a7906..a41d092 100644 --- a/flake.nix +++ b/flake.nix @@ -1,10 +1,17 @@ { + description = "My Nixo system configuration"; + inputs = { + nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable"; + home-manager.url = "github:nix-community/home-manager/master"; + }; outputs = { self, nixpkgs, - }: { + ... + } @ attrs : { nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = attrs; modules = [./sysconf/thinklappi.nix]; }; }; -- cgit v1.3.1