mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-04 21:43: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;
|
||||
runes = import ../modules/runes;
|
||||
in {
|
||||
|
||||
isNixFile = path: hasSuffix ".nix" path;
|
||||
mkIfIn = name: list: prev.mkIf (builtins.elem name list);
|
||||
mkRune = {
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
qtile
|
||||
hyprland
|
||||
|
||||
|
||||
virtualbox
|
||||
|
||||
gui
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
in {
|
||||
options.oizys.vbox.enable = mkEnableOption "enable virtualbox host";
|
||||
config = mkIf cfg.enable {
|
||||
virtualisation.virtualbox = {
|
||||
host.enable = true;
|
||||
};
|
||||
users.extraGroups.vboxusers.members = ["daylin"];
|
||||
virtualisation.virtualbox = {
|
||||
host.enable = true;
|
||||
};
|
||||
users.extraGroups.vboxusers.members = ["daylin"];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -10,13 +10,16 @@
|
|||
(f: f != "default.nix")
|
||||
(builtins.attrNames (builtins.readDir ./.)));
|
||||
in {
|
||||
nixpkgs.overlays = defaultOverlays ++ [
|
||||
(
|
||||
final: _prev: {
|
||||
stable = import inputs.stable { system = final.system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
nixpkgs.overlays =
|
||||
defaultOverlays
|
||||
++ [
|
||||
(
|
||||
final: _prev: {
|
||||
stable = import inputs.stable {
|
||||
system = final.system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
)
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue