mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Initial
This commit is contained in:
commit
a79fc67d37
647 changed files with 123931 additions and 0 deletions
25
sysConfig/default.nix
Normal file
25
sysConfig/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
# Nix requires default.nix to build the system properly, do not rename it.
|
||||
|
||||
# Add or remove imports based on the modules in your sysConfig directory.
|
||||
imports = [
|
||||
./audio.nix
|
||||
./boot.nix
|
||||
./gui.nix
|
||||
./hardware.nix
|
||||
./locale.nix
|
||||
./network.nix
|
||||
./users.nix
|
||||
./virt.nix
|
||||
];
|
||||
|
||||
# Enable nix commands and flakes
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = "experimental-features = nix-command flakes";
|
||||
};
|
||||
|
||||
system.stateVersion = "22.11"; # Do not edit this variable.
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue