mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-26 05:10:44 -06:00
Compare commits
3 commits
400930449c
...
8ac0e868ba
Author | SHA1 | Date | |
---|---|---|---|
8ac0e868ba | |||
12baa156cf | |||
8941f69db6 |
3 changed files with 20 additions and 9 deletions
|
@ -362,11 +362,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1717185053,
|
||||
"narHash": "sha256-Ve57FpjYukpmRoNJsiDyCiKy9wRbnCCbWe2PsO0aD7M=",
|
||||
"lastModified": 1717186228,
|
||||
"narHash": "sha256-oRlJy5eEKikL9d92GbKNE5qMESB6amqxBaswxNJxjuE=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "42ac8bee8c3fc78f6a8a2d3aee11a62c63bc556a",
|
||||
"revCount": 4,
|
||||
"rev": "f698f2614e8cadbe0abf18b15f79182ede7f17e7",
|
||||
"revCount": 6,
|
||||
"type": "git",
|
||||
"url": "https://git.dayl.in/daylin/hyprman.git"
|
||||
},
|
||||
|
|
|
@ -4,7 +4,22 @@
|
|||
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" {
|
||||
virtualisation.docker.enable = true;
|
||||
environment.systemPackages = with pkgs; [ lazydocker ];
|
||||
environment.systemPackages = (with pkgs; [ lazydocker]) ++ [ win10vm];
|
||||
}
|
||||
|
|
4
todo.md
4
todo.md
|
@ -12,8 +12,4 @@
|
|||
|
||||
- [ ] 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 -->
|
||||
|
|
Loading…
Reference in a new issue