mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
34 lines
612 B
Nix
34 lines
612 B
Nix
# Edit this configuration file to define what should be installed on
|
|
# your system.
|
|
|
|
{ lib, pkgs, ... }:
|
|
|
|
let
|
|
test_variable = "Hello world";
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
# Installing the common modules
|
|
# Still need to modularize this
|
|
# ../../modules/networking.nix
|
|
|
|
# Common modules
|
|
../../users.nix
|
|
../../modules/tweaks.nix
|
|
../../modules/laptop.nix
|
|
../../common.nix
|
|
];
|
|
|
|
# TEST INSERT
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
networking.networkmanager.wifi.powersave = true;
|
|
|
|
networking.hostName = "nixyos";
|
|
system.stateVersion = "24.11"; # Did you read the comment?
|
|
}
|
|
|