mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
formatting
This commit is contained in:
parent
b33633cd3c
commit
92bc73b255
4 changed files with 15 additions and 14 deletions
|
@ -2,7 +2,6 @@ final: prev: let
|
||||||
inherit (final) hasSuffix;
|
inherit (final) hasSuffix;
|
||||||
runes = import ../modules/runes;
|
runes = import ../modules/runes;
|
||||||
in {
|
in {
|
||||||
|
|
||||||
isNixFile = path: hasSuffix ".nix" path;
|
isNixFile = path: hasSuffix ".nix" path;
|
||||||
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
|
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
|
||||||
mkRune = {
|
mkRune = {
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
qtile
|
qtile
|
||||||
hyprland
|
hyprland
|
||||||
|
|
||||||
|
|
||||||
virtualbox
|
virtualbox
|
||||||
|
|
||||||
gui
|
gui
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
in {
|
in {
|
||||||
options.oizys.vbox.enable = mkEnableOption "enable virtualbox host";
|
options.oizys.vbox.enable = mkEnableOption "enable virtualbox host";
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
virtualisation.virtualbox = {
|
virtualisation.virtualbox = {
|
||||||
host.enable = true;
|
host.enable = true;
|
||||||
};
|
};
|
||||||
users.extraGroups.vboxusers.members = ["daylin"];
|
users.extraGroups.vboxusers.members = ["daylin"];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,13 +10,16 @@
|
||||||
(f: f != "default.nix")
|
(f: f != "default.nix")
|
||||||
(builtins.attrNames (builtins.readDir ./.)));
|
(builtins.attrNames (builtins.readDir ./.)));
|
||||||
in {
|
in {
|
||||||
nixpkgs.overlays = defaultOverlays ++ [
|
nixpkgs.overlays =
|
||||||
(
|
defaultOverlays
|
||||||
final: _prev: {
|
++ [
|
||||||
stable = import inputs.stable { system = final.system;
|
(
|
||||||
config.allowUnfree = true;
|
final: _prev: {
|
||||||
};
|
stable = import inputs.stable {
|
||||||
|
system = final.system;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue