mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-26 09:20: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": {
|
"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"
|
||||||
},
|
},
|
||||||
|
|
|
@ -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];
|
||||||
}
|
}
|
||||||
|
|
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?)
|
- [ ] 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 -->
|
||||||
|
|
Loading…
Reference in a new issue