feat/nix #3

Merged
Jaaj-San merged 59 commits from feat/nix into main 2024-09-20 22:35:47 +02:00
2 changed files with 21 additions and 0 deletions
Showing only changes of commit c575ff0a3c - Show all commits

View file

@ -0,0 +1,14 @@
{
pkgs,
...
} : {
home.file = {
".config/alacritty/alacritty.toml".source = ./alacritty.toml;
};
home.packages = [
pkgs.alacritty
];
}

7
term/default.nix Normal file
View file

@ -0,0 +1,7 @@
{
imports = [
./alacritty
];
}