Compare commits
3 commits
60229953ee
...
b837ef9a8d
Author | SHA1 | Date | |
---|---|---|---|
|
b837ef9a8d | ||
|
9962e0181f | ||
|
5325de4da2 |
|
@ -7,6 +7,9 @@
|
||||||
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.console.enable = false;
|
targets = {
|
||||||
|
console.enable = false;
|
||||||
|
grub.enable = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.gpg.enable = true;
|
programs.gpg = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
keyserver = "hkps://keys.openpgp.org";
|
||||||
|
};
|
||||||
|
};
|
||||||
services.gpg-agent = {
|
services.gpg-agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSshSupport = true;
|
enableSshSupport = true;
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
(retroarch.override {
|
(retroarch.withCores (cores:
|
||||||
cores = with libretro; [
|
with cores; [
|
||||||
fceumm
|
fceumm
|
||||||
gambatte
|
gambatte
|
||||||
mgba
|
mgba
|
||||||
snes9x
|
snes9x
|
||||||
];
|
]))
|
||||||
})
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue