add default.nix and refactor
:
This commit is contained in:
parent
e8ef08ee0b
commit
1864313574
3 changed files with 14 additions and 70 deletions
10
default.nix
10
default.nix
|
@ -1,8 +1,8 @@
|
||||||
{ config, pkgs, lib, home-manager, ...}:
|
{ config, inputs, pkgs, lib, home-manager, ...}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# home manager
|
# home manager
|
||||||
home-manager.nixosModules.default
|
inputs.home-manager.nixosModules.default
|
||||||
# modules
|
# modules
|
||||||
#i dont think this is right
|
#i dont think this is right
|
||||||
./modules
|
./modules
|
||||||
|
@ -31,12 +31,16 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# TODO(sako):: figure out plymouth and why my system is too fast
|
||||||
|
#boot.plymouth.enable = true;
|
||||||
|
|
||||||
|
|
||||||
# this shouldnt cause any issues right?
|
# this shouldnt cause any issues right?
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
||||||
time.timeZone = "Africa/Cairo";
|
time.timeZone = "Africa/Cairo";
|
||||||
|
|
||||||
il8n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
console = {
|
console = {
|
||||||
font = "Lat2-Terminus16";
|
font = "Lat2-Terminus16";
|
||||||
# keyMap = "us";
|
# keyMap = "us";
|
||||||
|
|
|
@ -6,53 +6,10 @@
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
inputs.home-manager.nixosModules.home-manager
|
../../default.nix
|
||||||
# TODO(sako):: make this better
|
|
||||||
];
|
];
|
||||||
|
# required for hostname specific configurations
|
||||||
# grub (mount efi partition to /boot/efi)
|
|
||||||
# why /boot/efi? instead of /efi?
|
|
||||||
# 1. when dualbooting, windows makes the efi partition 100mb instead of 512mb+ (we need this for generations
|
|
||||||
# and intel microcode)
|
|
||||||
# 2. nixos does not like /efi :(
|
|
||||||
boot.loader = {
|
|
||||||
efi = {
|
|
||||||
canTouchEfiVariables = true;
|
|
||||||
efiSysMountPoint = "/boot/efi";
|
|
||||||
};
|
|
||||||
grub = {
|
|
||||||
devices = [ "nodev" ];
|
|
||||||
efiSupport = true;
|
|
||||||
enable = true;
|
|
||||||
useOSProber = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# TODO(sako):: figure out plymouth and why my system is too fast
|
|
||||||
#boot.plymouth.enable = true;
|
|
||||||
|
|
||||||
# for later when i setup flakes
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
|
|
||||||
networking.hostName = "sakotop"; # Define your hostname.
|
networking.hostName = "sakotop"; # Define your hostname.
|
||||||
# Pick only one of the below networking options.
|
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
|
||||||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
|
||||||
|
|
||||||
# Set your time zone.
|
|
||||||
time.timeZone = "Africa/Cairo";
|
|
||||||
|
|
||||||
# Configure network proxy if necessary
|
|
||||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
|
||||||
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
|
|
||||||
|
|
||||||
# Select internationalisation properties.
|
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
|
||||||
console = {
|
|
||||||
font = "Lat2-Terminus16";
|
|
||||||
# keyMap = "us";
|
|
||||||
useXkbConfig = true; # use xkbOptions in tty.
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
@ -62,10 +19,6 @@
|
||||||
layout = "us";
|
layout = "us";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure keymap in X11
|
|
||||||
#services.xserver.layout = "us";
|
|
||||||
#services.xserver.xkbOptions = "eurosign:e,caps:escape";
|
|
||||||
|
|
||||||
# Nvidia Drivers
|
# Nvidia Drivers
|
||||||
hardware.opengl = {
|
hardware.opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -99,19 +52,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# packages that are unfree because they want to or need to
|
|
||||||
#nixpkgs.config.allowUnfreePredicate = pkg:
|
|
||||||
# builtins.elem (lib.getName pkg) [
|
|
||||||
# "steam"
|
|
||||||
# "steam-original"
|
|
||||||
# "discord"
|
|
||||||
# "widevine-cdm"
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# we already sold our souls to corporations why
|
|
||||||
# bother at this point
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
# Bluetooth
|
# Bluetooth
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
# TODO do this later
|
{}
|
||||||
|
|
Loading…
Reference in a new issue