42 lines
1001 B
Nix
Executable File
42 lines
1001 B
Nix
Executable File
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
home.packages = with pkgs; [ nixfmt-classic ];
|
|
|
|
imports = [
|
|
./modules/zsh/zsh.nix
|
|
./modules/kitty.nix
|
|
./modules/git.nix
|
|
./modules/programs.nix
|
|
./modules/custom/config.nix
|
|
];
|
|
|
|
home.pointerCursor = let
|
|
getFrom = url: hash: name: {
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
name = name;
|
|
size = 48;
|
|
package = pkgs.runCommand "moveUp" { } ''
|
|
mkdir -p $out/share/icons
|
|
ln -s ${
|
|
pkgs.fetchzip {
|
|
url = url;
|
|
hash = hash;
|
|
}
|
|
} $out/share/icons/${name}
|
|
'';
|
|
};
|
|
in getFrom
|
|
"https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
|
"sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk=" "Fuchsia-Pop";
|
|
|
|
home.username = "krosh";
|
|
home.homeDirectory = "/home/krosh";
|
|
home.stateVersion = "25.05";
|
|
programs.home-manager.enable = true;
|
|
|
|
home.enableNixpkgsReleaseCheck = false;
|
|
}
|