112 lines
2.9 KiB
Nix
112 lines
2.9 KiB
Nix
# This is your system's configuration file.
|
|
# Use this to configure your system environment (it replaces /etc/nixos/configuration.nix)
|
|
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# You can import other NixOS modules here
|
|
|
|
virtualisation.vmVariant = {
|
|
virtualisation.resolution = {
|
|
x = 1280;
|
|
y = 1024;
|
|
};
|
|
virtualisation.qemu.options = [
|
|
# Better display option
|
|
"-vga virtio"
|
|
"-display gtk,zoom-to-fit=false"
|
|
# Enable copy/paste
|
|
# https://www.kraxel.org/blog/2021/05/qemu-cut-paste/
|
|
"-chardev qemu-vdagent,id=ch1,name=vdagent,clipboard=on"
|
|
"-device virtio-serial-pci"
|
|
"-device virtserialport,chardev=ch1,id=ch1,name=com.redhat.spice.0"
|
|
];
|
|
};
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
nixpkgs = {
|
|
overlays = [
|
|
outputs.overlays.additions
|
|
outputs.overlays.modifications
|
|
outputs.overlays.unstable-packages
|
|
];
|
|
# Configure your nixpkgs instance
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
|
|
|
|
nix.nixPath = ["/etc/nix/path"];
|
|
environment.etc =
|
|
lib.mapAttrs'
|
|
(name: value: {
|
|
name = "nix/path/${name}";
|
|
value.source = value.flake;
|
|
})
|
|
config.nix.registry;
|
|
|
|
nix.settings = {
|
|
experimental-features = "nix-command flakes";
|
|
# Deduplicate and optimize nix store
|
|
auto-optimise-store = true;
|
|
};
|
|
|
|
# TODO: Set your hostname
|
|
networking.hostName = "test-vm";
|
|
|
|
# TODO: This is just an example, be sure to use whatever bootloader you prefer
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = { inherit inputs outputs; };
|
|
users = {
|
|
# Import your home-manager configuration
|
|
aner = import ../home-manager/home.nix;
|
|
};
|
|
};
|
|
|
|
users.users = {
|
|
aner = {
|
|
initialPassword = "password";
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys.keys = [
|
|
# TODO: Add your SSH public key(s) here, if you plan on using SSH to connect
|
|
];
|
|
# TODO: Be sure to add any other groups you need (such as networkmanager, audio, docker, etc)
|
|
extraGroups = ["wheel"];
|
|
};
|
|
};
|
|
|
|
|
|
# This setups a SSH server. Very important if you're setting up a headless system.
|
|
# Feel free to remove if you don't need it.
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
# Forbid root login through SSH.
|
|
PermitRootLogin = "no";
|
|
# Use keys only. Remove if you want to SSH using password (not recommended)
|
|
PasswordAuthentication = true;
|
|
};
|
|
};
|
|
|
|
#Graphical environment
|
|
services.xserver.enable = true;
|
|
services.xserver.displayManager.lightdm.enable = true;
|
|
services.xserver.desktopManager.xfce.enable = true;
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
system.stateVersion = "24.05";
|
|
}
|