Compare commits

..

No commits in common. "0a46026cea18600eec9d624ea38d88b8c0eae8c4" and "3352d73b3f8a81adadffa0c922515d7267423465" have entirely different histories.

3 changed files with 2 additions and 21 deletions

View File

@ -1,13 +0,0 @@
{ self, inputs, ... }: {
flake = {
homeModules.shell = { pkgs, lib, ... }: {
programs.zsh = {
enable = true;
package = pkgs.zsh;
enableCompletion = true;
autocd = true;
initContent = lib.getExe self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
};
};
};
}

View File

@ -7,7 +7,7 @@
flake.homeModules.sysFetch = { pkgs, lib, ... }: {
programs.fastfetch = {
enable = true;
package = pkgs.fastfetch; #self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
package = self.packages.${pkgs.stdenv.hostPlatform.system}.myFastfetch;
};
};

View File

@ -5,12 +5,6 @@
enable = true;
package = self.packages.${pkgs.stdenv.hostPlatform.system}.myNiri;
};
environment = {
systemPackages = with pkgs; [
wofi
firefox
];
};
};
perSystem = { pkgs, lib, ...}: {
@ -27,7 +21,7 @@
binds = {
"Mod+Return".spawn-sh = lib.getExe pkgs.kitty;
"Mod+R".spawn = [ "wofi" "--show" "drun"];
"Mod+R".spawn-sh = lib.getExe pkgs.hyprlauncher;
"Mod+Q".close-window = {};
};
};