chore: add commands to fish definition

This commit is contained in:
Nydragon 2024-10-02 00:31:34 +02:00
parent 6cf1a0ee7b
commit 3d97f48340
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
4 changed files with 11 additions and 12 deletions

View file

@ -7,6 +7,7 @@
./fonts.nix
./portals.nix
./env.nix
./secrets.nix
./programs/firefox.nix
./programs/thunderbird.nix

View file

@ -4,16 +4,4 @@ let
in
{
i18n.defaultLocale = locale;
i18n.extraLocaleSettings = {
LC_ADDRESS = locale;
LC_IDENTIFICATION = locale;
LC_MEASUREMENT = locale;
LC_MONETARY = locale;
LC_NAME = locale;
LC_NUMERIC = locale;
LC_PAPER = locale;
LC_TELEPHONE = locale;
LC_TIME = locale;
};
}

View file

@ -2,6 +2,11 @@
{
users.defaultUserShell = pkgs.fish;
environment.systemPackages = with pkgs; [
eza
bat
];
programs.fish = {
enable = true;
shellAbbrs = {

5
modules/secrets.nix Normal file
View file

@ -0,0 +1,5 @@
{
age.secrets.rustypaste = {
file = ../secrets/rustypaste.age;
};
}