first commit
This commit is contained in:
20
glasshouse-desktop/dotfiles/packages/ranger/flake.nix
Normal file
20
glasshouse-desktop/dotfiles/packages/ranger/flake.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
description = "Flake Boilerplate";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
packages.${system} = {
|
||||
default = pkgs.ranger.overrideAttrs (oldAttrs: {
|
||||
configFile = ./rc.conf;
|
||||
});
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user