dot_testing/boxes/mainsail/default.nix

47 lines
1009 B
Nix
Raw Normal View History

2023-10-30 16:15:31 -05:00
{ lib, config, pkgs, ...}:
{
imports = [
2023-12-28 15:59:44 -06:00
./hardware-configuration.nix
./server.nix
../../modules/bootstrap.nix
../../modules/common.nix
../../modules/x11.nix
../../modules/discord.nix
2023-10-30 16:15:31 -05:00
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "mainsail";
services.getty.greetingLine = "
welcome to mainsail |`-:_
,----....____ | `+.
( ````----....|___ |
\\ _ ````----....____
\\ _) ```---.._
\\ \\
)`.\\ )`. )`. )`. )`. )`. )`. )`. )`. )`. )`.
-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `-' `
";
environment.systemPackages = with pkgs; [
2023-11-15 21:04:50 -06:00
vscodium-fhs
libreoffice
anki-bin
2023-11-21 11:09:16 -06:00
ytfzf
2023-11-15 21:04:50 -06:00
kdenlive
libreoffice
i3
gcc
gnumake
scrcpy
thunderbird
mepo
2023-10-30 16:15:31 -05:00
];
2023-11-22 16:53:33 -06:00
2023-12-28 15:59:44 -06:00
system.stateVersion = "23.11";
2023-10-30 16:15:31 -05:00
}