Skip to content

shwewo/flake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

My custom flake for some program not packaged in Nix/overrides

You can run any program via:

nix run github:shwewo/<program>

If you want to use telegram desktop with patches, please visit this page

To add this to system-wide configuration do this:

flake.nix

inputs = {
  shwewo.url = "github:shwewo/flake";
  # your other inputs
};

outputs = inputs @ { self, nixpkgs, ... }: {
  nixosConfigurations.<HOSTNAME> = stable.lib.nixosSystem {
    system = "x86_64-linux"; 
    specialArgs = { inherit inputs }; # this line is important
    modules = [ ./configuration.nix ];
  };
}; 

And then you can just add this:

configuration.nix

environment.systemPackages = with pkgs; [
  inputs.shwewo.packages.${pkgs.system}.<program>
  # your other programs
]

About

Shwewo's custom flake

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published