dotfiles/machines/common/linux/default.nix

42 lines
527 B
Nix

{pkgs, ...}: {
imports = [
./boot.nix
./greeter.nix
./input.nix
./network.nix
./sound.nix
./xsession.nix
];
console.colors = [
"1e1e2e"
"585b70"
"bac2de"
"a6adc8"
"f38ba8"
"f38ba8"
"a6e3a1"
"a6e3a1"
"f9e2af"
"f9e2af"
"89b4fa"
"89b4fa"
"f5c2e7"
"f5c2e7"
"94e2d5"
"94e2d5"
];
programs.nix-ld.enable = true;
programs.zsh.enable = true;
environment.systemPackages = [pkgs.xdg-utils];
system.stateVersion = "22.11";
}