Compare commits
No commits in common. "67cd054cf247c7fef429f15d001aea8306c2c05d" and "bbd0027f357dae8f21b664a259b1f6399277d919" have entirely different histories.
67cd054cf2
...
bbd0027f35
@ -19,10 +19,21 @@ in
|
||||
];
|
||||
|
||||
imports = [
|
||||
./home-manager/hyprland.nix
|
||||
./home-manager/fish.nix
|
||||
./home-hyprland.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = (builtins.readFile ./config/fish/conf.d/interactive.fish);
|
||||
shellAliases = {
|
||||
wget = "wget -c";
|
||||
};
|
||||
functions = {
|
||||
fish_prompt = (builtins.readFile ./config/fish/functions/fish_prompt.fish);
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# keep everything using home manager within this block
|
||||
@ -51,9 +62,21 @@ in
|
||||
|
||||
imports = [
|
||||
./home-manager/hyprland.nix
|
||||
./home-manager/fish.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = (builtins.readFile ./config/fish/conf.d/interactive.fish);
|
||||
shellAliases = {
|
||||
wget = "wget -c";
|
||||
};
|
||||
functions = {
|
||||
fish_prompt = (builtins.readFile ./config/fish/functions/fish_prompt.fish);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
services.mako.enable = true;
|
||||
};
|
||||
}
|
||||
|
@ -1,14 +0,0 @@
|
||||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = (builtins.readFile ./config/fish/conf.d/interactive.fish);
|
||||
shellAliases = {
|
||||
wget = "wget -c";
|
||||
};
|
||||
functions = {
|
||||
fish_prompt = (builtins.readFile ./config/fish/functions/fish_prompt.fish);
|
||||
};
|
||||
};
|
||||
}
|
@ -12,6 +12,6 @@ in {
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
|
||||
extraConfig = (builtins.readFile ./config/hypr/hyprland.conf);
|
||||
extraConfig = (builtins.readFile ../config/hypr/hyprland.conf);
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user