2024-05-31 11:47:34 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../configs/base.nix
|
|
|
|
../../configs/desktop-base.nix
|
|
|
|
../../configs/desktop-i3.nix
|
|
|
|
../../configs/flightgear.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
killall
|
|
|
|
];
|
|
|
|
|
2024-05-31 12:01:55 +00:00
|
|
|
systemd.tmpfiles.settings = {
|
|
|
|
i3-config."/home/fly/.config/i3/config"."L+" = {
|
|
|
|
argument = "${../../../config/i3.conf}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-06-01 19:40:25 +00:00
|
|
|
services.xserver.displayManager = {
|
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "fly";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-05-31 11:47:34 +00:00
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
# boot.loader.grub.efiSupport = true;
|
|
|
|
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
|
|
|
|
|
|
|
|
networking.hostName = "simhost1";
|
|
|
|
|
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
|
|
|
|
}
|
|
|
|
|