-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathflake.nix
63 lines (59 loc) · 2.62 KB
/
flake.nix
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
{ description = "Tiled, scrollable window management for GNOME Shell";
inputs."nixpkgs".url = github:NixOS/nixpkgs;
inputs."nixpkgs-gnome".url = github:NixOS/nixpkgs/gnome;
outputs = { self, nixpkgs, nixpkgs-gnome, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem
(system:
let hostPkgs = import nixpkgs { inherit system; };
in
{ packages.default = hostPkgs.callPackage ./default.nix {};
# This allows us to build Qemu for the host system thus avoiding
# double emulation.
packages.vm = let hostConfig = self.nixosConfigurations.testbox;
localConfig = hostConfig.extendModules {
modules = [
({ modulesPath, ... }: {
imports = [ "${modulesPath}/virtualisation/qemu-vm.nix" ];
virtualisation.host.pkgs = hostPkgs;
})
];
};
in localConfig.config.system.build.vm;
}) // {
nixosConfigurations."testbox" =
let system = "x86_64-linux";
pkgs-gnome = import nixpkgs-gnome { inherit system; };
in nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./vm.nix
{ nixpkgs.overlays = [
# Introduce PaperWM into our extensions
(s: super: { paperwm = self.packages.${system}.default; })
# Pull GNOME-specific packages from GNOME staging
(s: super: {
gnome-desktop = pkgs-gnome.gnome-desktop;
gnome-shell = pkgs-gnome.gnome-shell.override {
evolution-data-server-gtk4 = super.evolution-data-server-gtk4.override {
inherit (super) webkitgtk_4_1 webkitgtk_6_0;
};
};
gnome-session = pkgs-gnome.gnome-session.override {
inherit (s) gnome-shell;
};
gnome-control-center = pkgs-gnome.gnome-control-center;
gnome-initial-setup = pkgs-gnome.gnome-initial-setup.override {
inherit (super) webkitgtk_6_0;
};
gnome-settings-daemon = pkgs-gnome.gnome-settings-daemon;
mutter = pkgs-gnome.mutter;
gdm = pkgs-gnome.gdm;
xdg-desktop-portal-gnome = pkgs-gnome.xdg-desktop-portal-gnome;
xdg-desktop-portal-gtk = pkgs-gnome.xdg-desktop-portal-gtk;
})
];
}
];
};
};
}