aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
blob: a8c1b60c5626825dbe838e3735db0061a82dd64e (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
66
67
68
69
70
71
72
73
74
75
76
{
  description = "nipsy's NixOS configuration";

  inputs = {
    disko.url = "github:nix-community/disko";
    disko.inputs.nixpkgs.follows = "nixpkgs-unstable";

    home-manager-stable = {
      url = "github:nix-community/home-manager/release-23.11";
      inputs.nixpkgs.follows = "nixpkgs-stable";
    };

    home-manager-unstable = {
      url = "github:nix-community/home-manager";
      inputs.nixpkgs.follows = "nixpkgs-unstable";
    };

    nixos-hardware.url = "github:nixos/nixos-hardware";

    nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.11";
    nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
  };

  outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, ... }: rec {
    nixosConfigurations = {
      darkstar = nixpkgs-unstable.lib.nixosSystem {
        pkgs = pkgs-unstable;
        system = "x86_64-linux";
        modules = [
          ./hosts/darkstar
          home-manager-unstable.nixosModules.home-manager {
            home-manager.users.root = import ./home/root/ginaz.nix;
            home-manager.users.nipsy = import ./home/nipsy/ginaz.nix;
          }
        ];
      };

      ginaz = nixpkgs-unstable.lib.nixosSystem {
        pkgs = pkgs-unstable;
        system = "x86_64-linux";
        modules = [
          ./hosts/ginaz
          nixos-hardware.nixosModules.lenovo-yoga-7-14ARH7.amdgpu
          home-manager-unstable.nixosModules.home-manager {
            home-manager.users.root = import ./home/root/ginaz.nix;
            home-manager.users.nipsy = import ./home/nipsy/ginaz.nix;
          }
        ];
      };

      richese = nixpkgs-unstable.lib.nixosSystem {
        pkgs = pkgs-unstable;
        system = "x86_64-linux";
        modules = [
          ./hosts/richese
          home-manager-unstable.nixosModules.home-manager {
            home-manager.users.root = import ./home/root/richese.nix;
            home-manager.users.nipsy = import ./home/nipsy/richese.nix;
          }
        ];
      };
    };

    pkgs-stable = import nixpkgs-stable {
      system = "x86_64-linux";
      config.allowUnfree = true;
      overlays = [(import ./pkgs)];
    };

    pkgs-unstable = import nixpkgs-unstable {
      system = "x86_64-linux";
      config.allowUnfree = true;
      overlays = [(import ./pkgs)];
    };
  };
}