new hardware

pull/8/merge
Álex Santiago 6 months ago committed by GitHub
parent be126b0571
commit 6a940382a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,4 +1,4 @@
# Edit this configuration file to define what should be installed on # Edit this configuration file to define what should be installed o
# your system. Help is available in the configuration.nix(5) man page # your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help). # and in the NixOS manual (accessible by running nixos-help).
@ -10,16 +10,17 @@
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
# Bootloader. # Bootloader. (UEFI)
boot.loader.grub.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.grub.device = "/dev/vda"; boot.loader.efi.canTouchEfiVariables = true;
boot.loader.grub.useOSProber = true;
# Autoupgrade (currently handled by flake.nix) boot.initrd.luks.devices."luks-1ec6d49d-7a0b-4ac9-aaea-e8efc1c75ac0".device = "/dev/disk/by-uuid/1ec6d49d-7a0b-4ac9-aaea-e8efc1c75ac0";
#system.autoUpgrade = {
# enable = true; # Autoupgrade (can be handled by flake.nix)
# channel = "https://nixos.org/channels/nixos-unstable"; system.autoUpgrade = {
# }; enable = true;
channel = "https://nixos.org/channels/nixos-unstable";
};
# Garbage collection # Garbage collection
nix = { nix = {
@ -32,8 +33,8 @@
}; };
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
programs.partition-manager.enable = true;
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
@ -46,6 +47,9 @@
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
# Enable Bluetooth
hardware.bluetooth.enable = true;
# Set your time zone. # Set your time zone.
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
@ -72,8 +76,15 @@
# Enable and configure SDDM # Enable and configure SDDM
services.xserver.displayManager.sddm.enable = true; services.xserver.displayManager.sddm.enable = true;
services.xserver.displayManager.sddm.wayland.enable = true; # services.xserver.displayManager.sddm.wayland.enable = true;
services.xserver.displayManager.sddm.autoNumlock = true; services.xserver.displayManager.sddm.autoNumlock = true;
services.xserver.displayManager.sddm.autoLogin.relogin = true;
# services.xserver.displayManager.sddm.settings = {
# Autologin = {
# Session = "plasma.desktop";
# User = "alexuty";
# };
# };
# Configure keymap in X11 # Configure keymap in X11
services.xserver.xkb = { services.xserver.xkb = {
@ -84,6 +95,7 @@
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;
# Enable sound with pipewire. # Enable sound with pipewire.
sound.enable = true; sound.enable = true;
hardware.pulseaudio.enable = false; hardware.pulseaudio.enable = false;
@ -141,12 +153,15 @@
]; ];
}; };
# Enable automatic login for the user.
# services.getty.autologinUser = "alexuty";
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Enable nix command and flakes # Enable nix command and flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
android-tools android-tools
filelight filelight

Loading…
Cancel
Save