nix-alien: enable
This commit is contained in:
parent
94b4ac3163
commit
3b291062f4
3 changed files with 17 additions and 1 deletions
|
@ -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
|
||||||
|
|
1
home.nix
1
home.nix
|
@ -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
15
nix-alien.nix
Normal 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;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue