Compare commits

...

3 commits

3 changed files with 20 additions and 9 deletions

View file

@ -362,11 +362,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1717185053, "lastModified": 1717186228,
"narHash": "sha256-Ve57FpjYukpmRoNJsiDyCiKy9wRbnCCbWe2PsO0aD7M=", "narHash": "sha256-oRlJy5eEKikL9d92GbKNE5qMESB6amqxBaswxNJxjuE=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "42ac8bee8c3fc78f6a8a2d3aee11a62c63bc556a", "rev": "f698f2614e8cadbe0abf18b15f79182ede7f17e7",
"revCount": 4, "revCount": 6,
"type": "git", "type": "git",
"url": "https://git.dayl.in/daylin/hyprman.git" "url": "https://git.dayl.in/daylin/hyprman.git"
}, },

View file

@ -4,7 +4,22 @@
mkOizysModule, mkOizysModule,
... ...
}: }:
let
# TODO: polish this up
win10vm = pkgs.stdenvNoCC.mkDerivation {
name = "win10vm";
unpackPhase = "true";
buildPhase = "mkdir $out";
version = "unstable";
desktopItem = pkgs.makeDesktopItem {
name = "win10vm";
exec = "VBoxManage startvm win10";
# icon = ""; # TODO: add windows icon
desktopName = "Windows 10 VM";
};
};
in
mkOizysModule config "docker" { mkOizysModule config "docker" {
virtualisation.docker.enable = true; virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [ lazydocker ]; environment.systemPackages = (with pkgs; [ lazydocker]) ++ [ win10vm];
} }

View file

@ -12,8 +12,4 @@
- [ ] find out why pixi on GHA is different from local (possibly from the fetch git step?) - [ ] find out why pixi on GHA is different from local (possibly from the fetch git step?)
- [ ] hyprland isn't doing alright with Xwayland and friends:
> https://github.com/hyprwm/Hyprland/issues/6133
> for now reverting to the commit vaxerski mentions in 6210
<!-- generated with <3 by daylinmorgan/todo --> <!-- generated with <3 by daylinmorgan/todo -->