This commit is contained in:
2023-03-03 15:24:10 +00:00
parent 3493993237
commit 8fad2f678d
4 changed files with 57 additions and 1 deletions

View File

@@ -14,6 +14,9 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
hyprland.url = "github:hyprwm/Hyprland";
golink.url = "github:tailscale/golink";
golink.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {
@@ -22,6 +25,7 @@
home-manager,
i3utils,
hyprland,
golink,
...
}: let
system = "x86_64-linux";
@@ -30,6 +34,9 @@
(import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
golink.overlay
];
})
// {
i3utils = i3utils.packages.${system}.default;
@@ -68,6 +75,8 @@
};
}
golink.nixosModules.default
home-manager.nixosModules.home-manager
{
home-manager = {