We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66d1c8d commit c26da8aCopy full SHA for c26da8a
hosts/dn-blackleg/default.nix
@@ -11,6 +11,7 @@ specialArgs.nixpkgs-2411.lib.nixosSystem {
11
../../mixins/base
12
../../mixins/docker
13
../../mixins/tailscale
14
+ ../../mixins/xosview
15
../../mixins/flatpak
16
./hardware-configuration.nix
17
./configuration.nix
mixins/xosview/default.nix
@@ -0,0 +1,12 @@
1
+{
2
+ config,
3
+ pkgs,
4
+ ...
5
+}: {
6
+ imports = [];
7
+
8
+ environment.systemPackages = with pkgs; [
9
+ xosview
10
+ ];
+}
0 commit comments