dotfiles/machines/common/linux/default.nix

41 lines
507 B
Nix
Raw Normal View History

2023-03-12 21:45:52 +01:00
{pkgs, ...}: {
imports = [
./boot.nix
./network.nix
./sound.nix
./xsession.nix
];
2023-03-12 21:45:52 +01:00
# needed for gnome3 pinentry
services.dbus.packages = [pkgs.gcr];
xdg.portal.enable = true;
xdg.portal.wlr.enable = true;
2023-03-28 12:59:48 +02:00
console.colors = [
"1e1e2e"
"585b70"
"bac2de"
"a6adc8"
"f38ba8"
"f38ba8"
"a6e3a1"
"a6e3a1"
"f9e2af"
"f9e2af"
"89b4fa"
"89b4fa"
"f5c2e7"
"f5c2e7"
"94e2d5"
"94e2d5"
];
2023-04-27 09:30:26 +02:00
programs.zsh.enable = true;
}