Compare commits
2 commits
9b36d4bd8e
...
7d7d1316d9
Author | SHA1 | Date | |
---|---|---|---|
7d7d1316d9 | |||
423ad3e4ec |
6 changed files with 17 additions and 1 deletions
|
@ -53,6 +53,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./appearance
|
./appearance
|
||||||
|
./languages
|
||||||
./profile
|
./profile
|
||||||
./programs
|
./programs
|
||||||
./services
|
./services
|
||||||
|
|
8
home/languages/default.nix
Normal file
8
home/languages/default.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./javascript.nix
|
||||||
|
./go.nix
|
||||||
|
./php.nix
|
||||||
|
];
|
||||||
|
}
|
8
home/languages/php.nix
Normal file
8
home/languages/php.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
home.shellAbbrs = {
|
||||||
|
p = "php";
|
||||||
|
pa = "php artisan";
|
||||||
|
a = "php artisan";
|
||||||
|
};
|
||||||
|
}
|
|
@ -10,7 +10,6 @@
|
||||||
./fish.nix
|
./fish.nix
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gh.nix
|
./gh.nix
|
||||||
./go.nix
|
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
./less.nix
|
./less.nix
|
||||||
|
|
Loading…
Reference in a new issue