Skip to content

Commit

Permalink
flake: update
Browse files Browse the repository at this point in the history
  • Loading branch information
sweenu committed Dec 23, 2024
1 parent ef5192d commit 42660bf
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 99 deletions.
132 changes: 44 additions & 88 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion profiles/develop/helix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
marksman

# protobuf
buf-language-server
buf
pb
];
};
Expand Down
17 changes: 13 additions & 4 deletions profiles/graphical/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,26 @@
home-manager.users."${config.vars.username}".programs.alacritty = {
enable = true;
settings = {
shell = { program = "${pkgs.tmux}/bin/tmux"; };
mouse = { hide_when_typing = true; };
terminal.shell = {
program = "${pkgs.tmux}/bin/tmux";
};
mouse = {
hide_when_typing = true;
};
window = {
opacity = 1;
decorations = "none";
padding = { x = 10; y = 10; };
padding = {
x = 10;
y = 10;
};
dynamic_padding = true;
};
font = {
size = 10.0;
normal = { family = config.vars.defaultMonoFont; };
normal = {
family = config.vars.defaultMonoFont;
};
};
colors = {
primary = {
Expand Down
7 changes: 1 addition & 6 deletions profiles/graphical/base.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@
fonts.packages = with pkgs; [
roboto
font-awesome
# only install those fonts from nerdfonts
(nerdfonts.override {
fonts = [
"DejaVuSansMono"
];
})
nerd-fonts.dejavu-sans-mono
twitter-color-emoji
];

Expand Down

0 comments on commit 42660bf

Please sign in to comment.