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