aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 7388919bc2b01d1b2aa7b8aaf803715344846ebd (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
{
  description = "Computing environment of Adrian Kummerlaender";

  inputs = {
    nixpkgs.url = github:NixOS/nixpkgs/nixos-21.05;
    nixpkgs-unstable.url = github:NixOS/nixpkgs/nixpkgs-unstable;
    home-manager = {
      url = github:nix-community/home-manager/release-21.05;
      inputs = { nixpkgs.follows = "nixpkgs"; };
    };
    emacs.url = github:nix-community/emacs-overlay/master;
    personal = {
      url = https://pkgs.kummerlaender.eu/nixexprs.tar.xz;
      flake = false;
    };
  };

  outputs = { self, nixpkgs, nixpkgs-unstable, emacs, home-manager, personal, ... }: let
    system = "x86_64-linux";

    pkgs = import nixpkgs {
      inherit system;
      config = { allowUnfree = true; };
    };

  in {
    homeManagerConfigurations = {
      common = home-manager.lib.homeManagerConfiguration {
        configuration = { pkgs, ... }: {
          _module.args = {
            pkgs-personal = import personal { };
            pkgs-unstable = import nixpkgs-unstable {
              inherit system;
              config = { allowUnfree = true; };
              overlays = [ emacs.overlay ];
            };
          };
          imports = [ ./home.nix ];
          nixpkgs = {
            config = { allowUnfree = true; };
          };
        };
        system = system;
        homeDirectory = "/home/common";
        username = "common";
      };
    };
  };
}