nix-alien: enable

This commit is contained in:
Daniella / Tove 2024-11-13 00:33:22 +01:00
parent 94b4ac3163
commit 3b291062f4
Signed by: TudbuT
GPG key ID: B3CF345217F202D3
3 changed files with 17 additions and 1 deletions

View file

@ -12,6 +12,7 @@ in
[ # Include the results of the hardware scan. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./home.nix ./home.nix
./nix-alien.nix
]; ];
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
@ -22,7 +23,6 @@ in
wget wget
alacritty alacritty
links2 links2
fish
killall killall
bat bat
dconf dconf

View file

@ -133,6 +133,7 @@ in
clear clear
exec $SHELL exec $SHELL
end end
alias nix-fish="nix-shell --command fish"
alias gitlog="git log --all --oneline --graph" alias gitlog="git log --all --oneline --graph"
''; '';
programs.alacritty.enable = true; programs.alacritty.enable = true;

15
nix-alien.nix Normal file
View file

@ -0,0 +1,15 @@
{ ... }:
let
nix-alien-pkgs = import (
builtins.fetchTarball "https://github.com/thiagokokada/nix-alien/tarball/master"
) { };
in
{
environment.systemPackages = with nix-alien-pkgs; [
nix-alien
];
# Optional, but this is needed for `nix-alien-ld` command
programs.nix-ld.enable = true;
}