Skip to content

Commit

Permalink
Update flake / Set SHELL env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sestrella committed May 14, 2024
1 parent d045508 commit de3a23c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
15 changes: 7 additions & 8 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
devenv.url = "github:cachix/devenv";
home-manager-diff.url = "github:pedorich-n/home-manager-diff";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/release-23.11";
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
home-manager.url = "github:nix-community/home-manager";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
tmux-dark-notify.flake = false;
tmux-dark-notify.url = "github:erikw/tmux-dark-notify";
};
Expand Down
10 changes: 5 additions & 5 deletions home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,17 @@
pkgs.yq
];

home.sessionVariables.SHELL = "${pkgs.fish}/bin/fish";

programs.alacritty = {
enable = true;
settings = {
import = [ "${pkgs.alacritty-theme}/solarized_dark.yaml" ];
import = [ "${pkgs.alacritty-theme}/solarized_light.toml" ];
font.normal = {
family = "FiraCode Nerd Font Mono";
style = "Medium";
};
font.size = 15;
font.size = 16;
shell.program = "${pkgs.fish}/bin/fish";
};
};
Expand All @@ -62,9 +64,7 @@

programs.gh = {
enable = true;
settings = {
git_protocol = "git";
};
settings.git_protocol = "git";
};

programs.hmd.enable = true;
Expand Down

0 comments on commit de3a23c

Please sign in to comment.