Compare commits
No commits in common. "master" and "flatpak-upgrade" have entirely different histories.
master
...
flatpak-up
@ -29,8 +29,6 @@
|
|||||||
inherit userName userEmail ghostty;
|
inherit userName userEmail ghostty;
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
meta = import ./meta;
|
|
||||||
|
|
||||||
# Primary laptop - MacBook Pro (2023, M3)
|
# Primary laptop - MacBook Pro (2023, M3)
|
||||||
darwinConfigurations."sephiroth" = darwin.lib.darwinSystem {
|
darwinConfigurations."sephiroth" = darwin.lib.darwinSystem {
|
||||||
system = "aarch64-darwin";
|
system = "aarch64-darwin";
|
||||||
|
@ -39,15 +39,13 @@
|
|||||||
# ublock origin
|
# ublock origin
|
||||||
id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";
|
id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";
|
||||||
sha256 = "sha256:0pdh1v0vx1d5vnl1zh7nbk6j1fh4k4hhwp1ljs203icn306lahsn";
|
sha256 = "sha256:0pdh1v0vx1d5vnl1zh7nbk6j1fh4k4hhwp1ljs203icn306lahsn";
|
||||||
# sha256 = lib.fakeSha256;
|
version = "1.63.2";
|
||||||
version = "1.64.0";
|
|
||||||
})
|
})
|
||||||
(createChromiumExtension {
|
(createChromiumExtension {
|
||||||
# bitwarden
|
# bitwarden
|
||||||
id = "nngceckbapebfimnlniiiahkandclblb";
|
id = "nngceckbapebfimnlniiiahkandclblb";
|
||||||
sha256 = "sha256:0jxk3cqmgd5qj8hnw7s0k5s4bfrcmr0w0rckp3x0bmng07azw4gi";
|
sha256 = "sha256:0jxk3cqmgd5qj8hnw7s0k5s4bfrcmr0w0rckp3x0bmng07azw4gi";
|
||||||
# sha256 = lib.fakeSha256;
|
version = "2025.3.1";
|
||||||
version = "2025.5.0";
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
@ -1,111 +1,12 @@
|
|||||||
{ lib, pkgs, ghostty, ... }: {
|
{pkgs, ghostty, ...}: {
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = pkgs.stdenv.isLinux;
|
enable = pkgs.stdenv.isLinux;
|
||||||
settings = {
|
settings = {}; # TODO: this will be filled in the future
|
||||||
colors = {
|
|
||||||
bright = {
|
|
||||||
black = "#444b6a";
|
|
||||||
blue = "#7da6ff";
|
|
||||||
cyan = "#0db9d7";
|
|
||||||
green = "#b9f27c";
|
|
||||||
magenta = "#bb9af7";
|
|
||||||
red = "#ff7a93";
|
|
||||||
white = "#acb0d0";
|
|
||||||
yellow = "#ff9e64";
|
|
||||||
};
|
|
||||||
|
|
||||||
cursor = {
|
|
||||||
cursor = "#F5E0DC";
|
|
||||||
text = "#1E1E2E";
|
|
||||||
};
|
|
||||||
|
|
||||||
hints = {
|
|
||||||
end = {
|
|
||||||
background = "#A6ADC8";
|
|
||||||
foreground = "#1E1E2E";
|
|
||||||
};
|
|
||||||
|
|
||||||
start = {
|
|
||||||
background = "#F9E2AF";
|
|
||||||
foreground = "#1E1E2E";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
normal = {
|
|
||||||
black = "#32344a";
|
|
||||||
blue = "#7aa2f7";
|
|
||||||
cyan = "#449dab";
|
|
||||||
green = "#9ece6a";
|
|
||||||
magenta = "#ad8ee6";
|
|
||||||
red = "#f7768e";
|
|
||||||
white = "#787c99";
|
|
||||||
yellow = "#e0af68";
|
|
||||||
};
|
|
||||||
|
|
||||||
primary = {
|
|
||||||
background = "#1a1b26";
|
|
||||||
bright_foreground = "#CDD6F4";
|
|
||||||
dim_foreground = "#CDD6F4";
|
|
||||||
foreground = "#a9b1d6";
|
|
||||||
};
|
|
||||||
|
|
||||||
search = {
|
|
||||||
focused_match = {
|
|
||||||
background = "#A6E3A1";
|
|
||||||
foreground = "#1E1E2E";
|
|
||||||
};
|
|
||||||
|
|
||||||
matches = {
|
|
||||||
background = "#A6ADC8";
|
|
||||||
foreground = "#1E1E2E";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
selection = {
|
|
||||||
background = "#F5E0DC";
|
|
||||||
text = "#1E1E2E";
|
|
||||||
};
|
|
||||||
|
|
||||||
vi_mode_cursor = {
|
|
||||||
cursor = "#B4BEFE";
|
|
||||||
text = "#1E1E2E";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
font = {
|
|
||||||
size = 11;
|
|
||||||
|
|
||||||
bold = {
|
|
||||||
family = "Monaspace Argon";
|
|
||||||
style = "Bold";
|
|
||||||
};
|
|
||||||
|
|
||||||
bold_italic = {
|
|
||||||
family = "Monaspace Argon";
|
|
||||||
style = "Bold Italic";
|
|
||||||
};
|
|
||||||
|
|
||||||
italic = {
|
|
||||||
family = "Monaspace Argon";
|
|
||||||
style = "Italic";
|
|
||||||
};
|
|
||||||
|
|
||||||
normal = {
|
|
||||||
family = "Monaspace Argon";
|
|
||||||
style = "Regular";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
window = { opacity = 0.95; };
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
programs.kitty = {
|
programs.kitty = {
|
||||||
enable = false; # TODO: to enable later
|
enable = false; # TODO: to enable later
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = if pkgs.stdenv.isLinux then
|
home.packages = [ ghostty.packages.${pkgs.system}.default ];
|
||||||
[ ghostty.packages.${pkgs.system}.default ]
|
|
||||||
else
|
|
||||||
[ ];
|
|
||||||
}
|
}
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
# Metadata
|
|
||||||
|
|
||||||
Developed and designed by Wyatt J. Miller, 2025
|
|
||||||
|
|
||||||
Licensed by the Mozilla Public License v2
|
|
||||||
|
|
||||||
_"That's so meta!"_
|
|
||||||
|
|
||||||
## Synopsis
|
|
||||||
|
|
||||||
This is just metadata about the configuration and the repository. This might interest contributors but the average Joe probably won't find a use for this.
|
|
@ -1,3 +0,0 @@
|
|||||||
{ lib, ... }: with lib; {
|
|
||||||
maintainers = import ./maintainers.nix;
|
|
||||||
}
|
|
@ -29,7 +29,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
casks = [
|
casks = [
|
||||||
# "ghostty"
|
"ghostty"
|
||||||
"raycast"
|
"raycast"
|
||||||
"jordanbaird-ice"
|
"jordanbaird-ice"
|
||||||
"iina"
|
"iina"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user