mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
cleaned up a whole bunch
This commit is contained in:
parent
2f04dc0e23
commit
a959cf3e97
17 changed files with 199 additions and 220 deletions
|
|
@ -2,21 +2,24 @@
|
|||
inputs,
|
||||
pkgs,
|
||||
config,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
#put:
|
||||
#source /run/current-system/sw/share/nix-direnv/direnvrc
|
||||
#in ~/.direnvrc
|
||||
#do i need to do this^?
|
||||
environment = {
|
||||
systemPackages = [
|
||||
pkgs.page
|
||||
pkgs.exa
|
||||
pkgs.direnv
|
||||
pkgs.nix-direnv
|
||||
inputs.fetch-rs.packages.${pkgs.system}.default
|
||||
];
|
||||
binsh = "${pkgs.dash}/bin/dash"; #use dash for speed
|
||||
systemPackages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
page
|
||||
exa
|
||||
direnv
|
||||
nix-direnv
|
||||
;
|
||||
inherit
|
||||
(inputs.fetch-rs.packages.${pkgs.system})
|
||||
default
|
||||
;
|
||||
};
|
||||
binsh = lib.getExe pkgs.dash; #use dash for speed
|
||||
variables = {
|
||||
EDITOR = "nvim";
|
||||
VISUAL = "nvim";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue