Compare commits
No commits in common. "b837ef9a8d0fb923df31a019b4ffe727a7c194c1" and "60229953ee6c0bfca187d335b9f24623177b167d" have entirely different histories.
b837ef9a8d
...
60229953ee
|
@ -7,9 +7,6 @@
|
|||
stylix = {
|
||||
enable = true;
|
||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
||||
targets = {
|
||||
console.enable = false;
|
||||
grub.enable = false;
|
||||
};
|
||||
targets.console.enable = false;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,10 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
settings = {
|
||||
keyserver = "hkps://keys.openpgp.org";
|
||||
};
|
||||
};
|
||||
programs.gpg.enable = true;
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
(retroarch.withCores (cores:
|
||||
with cores; [
|
||||
(retroarch.override {
|
||||
cores = with libretro; [
|
||||
fceumm
|
||||
gambatte
|
||||
mgba
|
||||
snes9x
|
||||
]))
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue