Update flake
This commit is contained in:
parent
01999335ea
commit
8d0d943d4e
5 changed files with 74 additions and 96 deletions
|
|
@ -3,10 +3,7 @@
|
|||
lib,
|
||||
...
|
||||
}: {
|
||||
boot = {
|
||||
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||
loader.grub.zfsSupport = true;
|
||||
};
|
||||
boot.loader.grub.zfsSupport = true;
|
||||
|
||||
services.zfs = {
|
||||
autoScrub.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,5 @@
|
|||
{config, ...}: {
|
||||
boot = {
|
||||
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||
loader.grub.zfsSupport = true;
|
||||
};
|
||||
{...}: {
|
||||
boot.loader.grub.zfsSupport = true;
|
||||
|
||||
services.zfs = {
|
||||
autoScrub.enable = true;
|
||||
|
|
|
|||
|
|
@ -7,21 +7,24 @@
|
|||
userName = config.constants.userName;
|
||||
jovianPkgs = pkgs.extend inputs.jovian.overlays.default;
|
||||
in {
|
||||
home-manager.users.${userName} = {
|
||||
home.packages = with jovianPkgs; [
|
||||
feishin
|
||||
lutris
|
||||
maliit-keyboard
|
||||
(retroarch.override {
|
||||
cores = with libretro; [
|
||||
pcsx2
|
||||
ppsspp
|
||||
];
|
||||
})
|
||||
ryujinx
|
||||
winetricks
|
||||
wineWowPackages.stagingFull
|
||||
];
|
||||
home-manager.users.${userName} = {config, ...}: {
|
||||
home = {
|
||||
file.".local/share/fonts".source = config.lib.file.mkOutOfStoreSymlink "/run/current-system/sw/share/X11/fonts";
|
||||
packages = with jovianPkgs; [
|
||||
feishin
|
||||
lutris
|
||||
maliit-keyboard
|
||||
(retroarch.override {
|
||||
cores = with libretro; [
|
||||
pcsx2
|
||||
ppsspp
|
||||
];
|
||||
})
|
||||
ryujinx
|
||||
winetricks
|
||||
wineWowPackages.stagingFull
|
||||
];
|
||||
};
|
||||
};
|
||||
jovian = {
|
||||
devices.steamdeck = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue