config/hosts/live/configuration.nix

70 lines
1.6 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
config,
pkgs,
lib,
inputs,
...
}: {
imports = [
../common/default.nix
];
nixpkgs = {
hostPlatform = lib.mkDefault "x86_64-linux";
};
services = {
# qemuGuest.enable = true;
openssh.settings.PermitRootLogin = lib.mkForce "yes";
};
boot = {
supportedFilesystems = lib.mkForce ["btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
kernelPackages = pkgs.linuxPackages;
extraModulePackages = with config.boot.kernelPackages; [rtl8812au];
};
networking = {
hostName = "live";
};
# gnome power settings do not turn off screen
systemd = {
services.sshd.wantedBy = pkgs.lib.mkForce ["multi-user.target"];
targets = {
sleep.enable = false;
suspend.enable = false;
hibernate.enable = false;
hybrid-sleep.enable = false;
};
};
# Define a user account. Don't forget to set a password with passwd.
users.users.nixos = {
isNormalUser = true;
description = "nixos";
extraGroups = ["networkmanager" "wheel" "docker" "libvirtd" "plugdev"];
shell = pkgs.zsh;
packages = with pkgs; [
firefox
kate
rio
telegram-desktop
kitty
mailspring
# thunderbird
];
};
home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.users.nixos = {
imports = [../../modules/home-manager/default.nix];
_module.args.theme = import ../../core/theme.nix;
home.stateVersion = "23.11"; # Please read the comment before changing it.
home.username = "nixos";
home.homeDirectory = "/home/nixos";
};
users.extraUsers.root.password = "nixos";
}