Compare commits

..

No commits in common. "5169cbc82c938ab94348a7a005cfb1334835a159" and "c9156044f81ffaeebd3ba3ada59eb27a9bfda0c6" have entirely different histories.

11 changed files with 16 additions and 33 deletions

View file

@ -6,6 +6,5 @@
docker = true; docker = true;
}; };
extra = true; extra = true;
gaming = true;
}; };
} }

View file

@ -10,6 +10,5 @@
python = true; python = true;
}; };
extra = true; extra = true;
gaming = true;
}; };
} }

View file

@ -395,7 +395,6 @@ in
curl curl
python3Packages.pip python3Packages.pip
rename rename
which
# shell # shell
zsh-completions zsh-completions

View file

@ -6,7 +6,6 @@
./desktop.nix ./desktop.nix
./dev.nix ./dev.nix
./extra.nix ./extra.nix
./gaming
./ssh.nix ./ssh.nix
./style.nix ./style.nix
./vim.nix ./vim.nix

View file

@ -49,11 +49,18 @@
# downloading # downloading
transmission-qt transmission-qt
] ++ lib.optionals (builtins.currentSystem == "x86_64-linux") [
# Not sure this works in case of cross-compilation, but couldn't find a # FIXME Below not on aarch64
# thing that works in both os and hm context # wine
wine wine
# TODO wine-gecko wine-mono lib32-libpulse (?) # TODO wine-gecko wine-mono lib32-libpulse (?)
# gaming
# steam # FIXME Requires i686-linux or something. IIRC the package says to use the NixOS config and not it directly.
yuzu-mainline
minecraft
# TODO factorio
]); ]);
}; };
} }

View file

@ -1,15 +0,0 @@
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.gaming {
# Using config.nixpkgs.<something> creates an infinite recursion,
# but the above might not be correct in case of cross-compiling?
home.packages = with pkgs; [
# gaming
yuzu-mainline
minecraft
# TODO factorio
steam # Common pitfall: https://github.com/NixOS/nixpkgs/issues/86506#issuecomment-623746883
];
};
}

View file

@ -2,7 +2,6 @@
{ {
options.frogeye = { options.frogeye = {
extra = lib.mkEnableOption "Big software"; extra = lib.mkEnableOption "Big software";
gaming = lib.mkEnableOption "Games";
desktop = { desktop = {
xorg = lib.mkEnableOption "Enable X11 support"; xorg = lib.mkEnableOption "Enable X11 support";
nixGLIntel = lib.mkEnableOption "Enable nixGLIntel/nixVulkanIntel for windows manager"; nixGLIntel = lib.mkEnableOption "Enable nixGLIntel/nixVulkanIntel for windows manager";

View file

@ -25,6 +25,7 @@
wget wget
kexec-tools kexec-tools
openvpn openvpn
update-resolv-conf # TODO Is it what I think it is?
# android tools # android tools
android-udev-rules android-udev-rules
@ -63,6 +64,9 @@
}; };
# FIXME services.openvpn.servers.<name>.updateResolvConf=true
# For profiles in the extensions
# TODO Hibernation? # TODO Hibernation?
# TEST # TEST

View file

@ -3,10 +3,9 @@
imports = [ imports = [
../options.nix ../options.nix
./battery.nix ./battery.nix
./geoffrey.nix
./common.nix ./common.nix
./desktop.nix ./desktop.nix
./gaming
./geoffrey.nix
./wireless.nix ./wireless.nix
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22.tar.gz"}/module.nix" "${builtins.fetchTarball "https://github.com/nix-community/disko/archive/3cb78c93e6a02f494aaf6aeb37481c27a2e2ee22.tar.gz"}/module.nix"
]; ];

View file

@ -1,7 +0,0 @@
{ pkgs, lib, config, ... }:
{
config = lib.mkIf config.frogeye.gaming {
programs.steam.enable = true;
hardware.opengl.driSupport32Bit = true; # Enables support for 32bit libs that steam uses
};
}

View file

@ -1,6 +1,6 @@
{ ... }: { ... }:
{ {
frogeye.extra = true; frogeye.extra = false; # FIXME Not working yet
frogeye.desktop.xorg = true; frogeye.desktop.xorg = true;
frogeye.dev.docker = true; frogeye.dev.docker = true;
} }