summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 5381a8f267fc6a9c6b10e2a4cc5b162f91838fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
  description = "Jptrzy's nixos config";

  inputs = {
    # Nixpkgs
    nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
    nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";

    # Home manager
    home-manager.url = "github:nix-community/home-manager/release-23.05";
    home-manager.inputs.nixpkgs.follows = "nixpkgs";

    # Nix Colors
    nix-colors.url = "github:misterio77/nix-colors";
  };

  outputs = {
    self,
    nixpkgs,
    home-manager,
    nix-colors,
    ...
  } @ inputs: let
    inherit (self) outputs;

    username = "jp3";
    hostname = "x270";

    system = "x86_64-linux";

    #pkgs = import nixpkgs {
    #  inherit system;
    #};
    #lib = nixpkgs.lib;
  in {
    # Your custom packages
    # Acessible through 'nix build', 'nix shell', etc
    packages = ( 
      let pkgs = nixpkgs.legacyPackages.${system};
      in import ./pkgs { inherit pkgs; });

    # Your custom packages and modifications, exported as overlays
    overlays = import ./overlays {inherit inputs;};

    # NixOS configuration entrypoint
    # Available through 'nixos-rebuild --flake .#your-hostname'
    nixosConfigurations = {
      ${hostname} = nixpkgs.lib.nixosSystem {
        specialArgs = { inherit username hostname system inputs outputs; };
        modules = [ 
          ./nixos/configuration.nix

          home-manager.nixosModules.home-manager {
            home-manager.useGlobalPkgs = true; 
            home-manager.useUserPackages = true;
            home-manager.users.${username} = {
              imports = [ ./home-manager/home.nix ];
            };
            home-manager.extraSpecialArgs = { inherit username nix-colors; };
          }
        ];
      };
    };
  };
}
Software created with 💖