1
Fork 0

Begin Azedia machine configuration.

This commit is contained in:
Bauke 2023-08-21 17:44:19 +02:00
parent fb8b4b5b4f
commit 49c525728d
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,30 @@
# The main configuration file.
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix # Created by nixos-generate-config.
];
nix = {
settings.experimental-features = [ "flakes" "nix-command" ];
};
nixpkgs = {
config = {
allowUnfree = true;
packageOverrides = pkgs: {
# Add the unstable channel as a separate package set.
unstable = import <nixos-unstable> {
# Pass config through so everything is shared between all channels.
config = config.nixpkgs.config;
};
};
};
};
# Before changing this value read the documentation for this option!
# https://search.nixos.org/options?channel=22.11&show=system.stateVersion
system.stateVersion = "22.11";
}