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
|
|
|
|
|
2023-12-18 13:19:58 -06:00
|
|
|
anki-bin
|
2023-11-21 11:09:16 -06:00
|
|
|
ytfzf
|
2023-11-15 21:04:50 -06:00
|
|
|
kdenlive
|
|
|
|
libreoffice
|
|
|
|
i3
|
|
|
|
gcc
|
|
|
|
gnumake
|
2023-12-06 18:22:25 -06:00
|
|
|
|
|
|
|
scrcpy
|
2023-12-18 13:19:58 -06:00
|
|
|
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
|
|
|
}
|