Big update

This commit is contained in:
ant 2024-06-03 15:24:20 +02:00
parent 17dc67816a
commit 4be1762868
17 changed files with 1238 additions and 1338 deletions

View file

@ -1,5 +1,5 @@
{
description = "Home Manager configuration of ant";
description = "Home Manager configuration";
inputs = {
# Specify the source of Home Manager and Nixpkgs.
@ -8,16 +8,12 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprfocus.url = "github:VortexCoyote/hyprfocus";
};
outputs = { nixpkgs, home-manager, hyprfocus, ... }:
outputs = { nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
flakes-pkgs = {
hyprfocus = hyprfocus.packages.${pkgs.system}.hyprfocus;
};
in {
homeConfigurations."ant" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
@ -27,12 +23,6 @@
modules = [
./home.nix
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = {
inherit flakes-pkgs;
};
};
};
}