Skip to content

shwewo/ayugram-desktop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ayugram desktop NixOS flake

To install, add this to your flake:

inputs = {
  ayugram-desktop.url = "github:shwewo/ayugram-desktop";
  # your other flakes...
};

To use my binary cache, add this to nix config:

nix = {
  settings = {
    substituters = [
      "https://shwewo.cachix.org"
    ];
    trusted-public-keys = [
      "shwewo.cachix.org-1:84cIX7ETlqQwAWHBnd51cD4BeUVXCyGbFdtp+vLxKOo="
    ];
    # other options...
  };
};

To use it in your system add this to your configuration.nix:

environment.systemPackages = with pkgs; [
  inputs.ayugram-desktop.packages.${pkgs.system}.default
];

Also don't forget to add inherit inputs to your flake.nix like that:

nixosConfigurations.hostname = nixpkgs.lib.nixosSystem {
  system = "x86_64-linux";
  specialArgs = { 
    inherit inputs;   
  };

  # other configuration...
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages