nix-conf/hosts/default/configuration.nix
2024-04-11 10:22:48 +05:30

110 lines
2.5 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 = [
# Include the results of the hardware scan.
./hardware-configuration.nix
inputs.home-manager.nixosModules.default
];
# Set your time zone.
time.timeZone = "Asia/Kolkata";
# Debug infod
services.nixseparatedebuginfod.enable = true;
# Enable hyprland
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# Enable dconf
programs.dconf.enable = true;
# Enable CUPS to print documents.
services.printing.enable = true;
programs.zsh.enable = true;
nix.settings.trusted-users = ["root" "user"];
# Define a user account. Don't forget to set a password with passwd.
users.users.user = {
isNormalUser = true;
description = "user";
shell = pkgs.zsh;
extraGroups = ["networkmanager" "wheel" "libvirtd" "qemu" "qemu-kvm" "vo" "docker" "lxc" "incus-admin"];
packages = with pkgs; [
kate
vim
libvirt
spice-gtk
qemu
qemu_kvm
virt-viewer
virt-manager
OVMF
dnsmasq
networkmanagerapplet
];
};
users.users.root = {
subUidRanges = [
{
count = 1000;
startUid = 1000;
}
];
subGidRanges = [
{
count = 1000;
startGid = 1000;
}
];
};
home-manager = {
extraSpecialArgs = {inherit inputs;};
users = {
"user" = import ./home.nix;
};
};
environment = {
homeBinInPath = true; # Include ~/bin/ in $PATH
localBinInPath = true; # Include ~/.local/bin in $PATH
sessionVariables = {
# tell electron apps to use wayland
NIXOS_OZONW_WL = "1";
};
};
# Allow unfree packages
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
};
};
# Enable the OpenSSH daemon.
services.openssh.enable = true;
# Nix extra options
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
}