This commit is contained in:
2025-11-14 23:43:32 +03:00
parent 583f5b48be
commit 4b63bf7fae
5 changed files with 102 additions and 64 deletions
+21 -38
View File
@@ -2,51 +2,34 @@
{
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
# gnomeExtensions.paperwm
nixfmt-classic
];
home.packages = with pkgs; [ nixfmt-classic ];
imports = [
./modules/zsh/zsh.nix
./modules/kitty.nix
./modules/git.nix
./modules/programs.nix
];
# dconf = {
# enable = true;
# settings = {
# "org/gnome/shell" = {
# enabled-extensions = [
# "paperwm@paperwm.github.com"
# ];
# };
# "org/gnome/desktop/interface".show-battery-percentage = true;
# };
# };
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.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";