58 lines
1.8 KiB
Nix
58 lines
1.8 KiB
Nix
{
|
|
description = "Price Hiller's home manager configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
bob = {
|
|
url = "path:./pkgs/bob-nvim";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
|
};
|
|
|
|
outputs = inputs @ { home-manager, bob, nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
username = "sam";
|
|
in
|
|
{
|
|
defaultPackage.x86_64-linux = home-manager.defaultPackage.x86_64-linux;
|
|
targets.genericLinux.enable = true;
|
|
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
modules = [
|
|
({
|
|
nixpkgs.overlays = [
|
|
inputs.neovim-nightly-overlay.overlay
|
|
(self: super: {
|
|
kanagawa-gtk-theme = super.callPackage ./pkgs/kanagawa-gtk { };
|
|
lxappearance = super.lxappearance.overrideAttrs (oldAttrs: {
|
|
postInstall = ''
|
|
wrapProgram $out/bin/lxappearance --prefix GDK_BACKEND : x11
|
|
'';
|
|
});
|
|
bob-nvim = bob.overlays.${system}.default;
|
|
opensnitch-ui = super.opensnitch-ui.overrideAttrs
|
|
(oldAttrs: rec {
|
|
propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [
|
|
super.python311Packages.qt-material
|
|
];
|
|
});
|
|
})
|
|
];
|
|
home = {
|
|
username = "${username}";
|
|
homeDirectory = "/home/${username}";
|
|
stateVersion = "24.05";
|
|
};
|
|
})
|
|
./config
|
|
];
|
|
};
|
|
};
|
|
}
|