nit: make nix flake check happy
This commit is contained in:
parent
0e590162d2
commit
7827b01899
5 changed files with 5 additions and 21 deletions
|
@ -191,13 +191,13 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
devshell = ./shell;
|
devshells.x86_64-linux.default = ./shell;
|
||||||
|
|
||||||
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
||||||
|
|
||||||
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
||||||
|
|
||||||
defaultTemplate = self.templates.bud;
|
templates.default = self.templates.bud;
|
||||||
templates.bud.path = ./.;
|
templates.bud.path = ./.;
|
||||||
templates.bud.description = "bud template";
|
templates.bud.description = "bud template";
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{ suites, profiles, pkgs, lib, ... }: {
|
|
||||||
imports = lib.lists.flatten [
|
|
||||||
(with suites; [
|
|
||||||
base
|
|
||||||
])
|
|
||||||
|
|
||||||
(with profiles; [
|
|
||||||
networking.wireless
|
|
||||||
])
|
|
||||||
];
|
|
||||||
|
|
||||||
modules.hardware.form.raspi = true;
|
|
||||||
}
|
|
|
@ -15,7 +15,6 @@
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
form.portable = true;
|
form.portable = true;
|
||||||
};
|
};
|
||||||
services.proxy.enable = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.persistence."/persist" = {
|
environment.persistence."/persist" = {
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
profiles = with profiles;
|
profiles = with profiles;
|
||||||
[
|
[
|
||||||
networking.wireless
|
networking.wireless
|
||||||
|
|
||||||
btrfs
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -23,9 +21,6 @@
|
||||||
gpu.amdgpu = true;
|
gpu.amdgpu = true;
|
||||||
wireless.enable = true;
|
wireless.enable = true;
|
||||||
};
|
};
|
||||||
services = {
|
|
||||||
proxy.enable = true;
|
|
||||||
};
|
|
||||||
desktop.wm.enable = true;
|
desktop.wm.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# Taken from https://github.com/VergeDX/config-nixpkgs/blob/899f13750c9c1795d455eeee9cb28d3aa74a0866/packages/gui/olympus.nix
|
# Taken from https://github.com/VergeDX/config-nixpkgs/blob/899f13750c9c1795d455eeee9cb28d3aa74a0866/packages/gui/olympus.nix
|
||||||
{ stdenv
|
{ stdenv
|
||||||
|
, lib
|
||||||
, fetchzip
|
, fetchzip
|
||||||
, unzip
|
, unzip
|
||||||
, makeDesktopItem
|
, makeDesktopItem
|
||||||
|
@ -41,6 +42,8 @@ buildFHSUserEnv {
|
||||||
pkgs.glib
|
pkgs.glib
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta.platforms = lib.platforms.linux;
|
||||||
|
|
||||||
# https://github.com/EverestAPI/Olympus/blob/main/lib-linux/olympus.desktop
|
# https://github.com/EverestAPI/Olympus/blob/main/lib-linux/olympus.desktop
|
||||||
# https://stackoverflow.com/questions/8822097/how-to-replace-a-whole-line-with-sed
|
# https://stackoverflow.com/questions/8822097/how-to-replace-a-whole-line-with-sed
|
||||||
extraInstallCommands = ''cp -r "${olympus}/share/" $out'';
|
extraInstallCommands = ''cp -r "${olympus}/share/" $out'';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue