aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 15812699ce118a7eeed39175934d2cf3f1802bfb (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
{
  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; };
    };

    home = 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";
    };

  in {
    defaultPackage.x86_64-linux = home.activationPackage;

    defaultApp.x86_64-linux = {
      type = "app";
      program = "${home.activationPackage}/activate";
    };
  };
}