dotfiles/machines/common/linux/default.nix

42 lines
465 B
Nix
Raw Normal View History

2023-05-18 15:19:31 +02:00
{
imports = [
./boot.nix
./greeter.nix
2023-05-18 15:19:31 +02:00
./input.nix
./network.nix
./sound.nix
./xsession.nix
];
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
2023-06-01 02:42:19 +02:00
programs.nix-ld.enable = true;
2023-04-27 09:30:26 +02:00
programs.zsh.enable = true;
2023-06-24 21:24:20 +02:00
system.stateVersion = "22.11";
}