Guest User

Untitled

a guest
Mar 8th, 2024
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. {
  2. description = "flake for home-manager";
  3.  
  4. inputs = {
  5. nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  6. home-manager.url = "github:nix-community/home-manager/master";
  7. home-manager.inputs.nixpkgs.follows = "nixpkgs";
  8.  
  9. nixgl.url = "github:guibou/nixGL";
  10. };
  11.  
  12. outputs = { self, nixpkgs, home-manager, nixgl, ... }@inputs:
  13. let
  14. system = "x86_64-linux";
  15. pkgs = import nixpkgs {
  16. system = system;
  17. };
  18. in {
  19. homeConfigurations = {
  20. shareni = home-manager.lib.homeManagerConfiguration {
  21. inherit pkgs;
  22. modules = [ ./home.nix ];
  23. extraSpecialArgs = {
  24. inherit inputs;
  25. inherit system;
  26. };
  27. };
  28. };
  29. };
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment