diff options
author | sils <sils@sils.li> | 2023-02-25 15:49:11 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-02-25 15:49:11 +0100 |
commit | 38bbe28e6818bdc6400366fa87dbb963dfe5044b (patch) | |
tree | cab21afb904353535f2f48418acd0b9eacb187c6 /flake.nix | |
parent | Update: flake.lock (diff) | |
download | nix-config-38bbe28e6818bdc6400366fa87dbb963dfe5044b.tar.gz nix-config-38bbe28e6818bdc6400366fa87dbb963dfe5044b.zip |
Packages: Add signal-cli
Diffstat (limited to '')
-rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 37f9431..5775c42 100644 --- a/flake.nix +++ b/flake.nix @@ -2,11 +2,15 @@ description = "My Nixo system configuration"; inputs = { nixpkgs.url = "github:NixOs/nixpkgs/nixos-unstable"; - home-manager.url = "github:nix-community/home-manager/master"; + home-manager = { + url = "github:nix-community/home-manager/master"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = { self, nixpkgs, + home-manager, ... } @ attrs: { nixosConfigurations.thinklappi = nixpkgs.lib.nixosSystem { |