Compare commits
No commits in common. "77f24c597b654a45555797dabe14233189c980c1" and "34b92a605361ae8ef7d57ca989b53fc2530fb686" have entirely different histories.
77f24c597b
...
34b92a6053
|
@ -10,20 +10,18 @@
|
|||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
boot.extraModprobeConfig = '' options bluetooth disable_ertm=1 '';
|
||||
boot.kernelPackages = pkgs.linuxPackages; # (this is the default) some amdgpu issues on 6.10
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
hardware.xone.enable = true; # support for the xbox controller USB dongle
|
||||
|
||||
networking.hostName = "eshu"; # 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.
|
||||
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 = "Europe/Amsterdam";
|
||||
|
@ -41,16 +39,14 @@
|
|||
# };
|
||||
|
||||
services.blueman.enable = true;
|
||||
services.displayManager = {
|
||||
autoLogin.enable = true;
|
||||
autoLogin.user = "eliribble";
|
||||
services.getty.autologinUser = "eliribble";
|
||||
environment = {
|
||||
loginShellInit = ''
|
||||
[[ "$(tty)" = "/dev/tty1" ]] && ./gs.sh
|
||||
'';
|
||||
};
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver = {
|
||||
displayManager.gdm.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
enable = true;
|
||||
};
|
||||
services.xserver.enable = true;
|
||||
|
||||
|
||||
|
||||
|
@ -89,7 +85,6 @@
|
|||
chezmoi
|
||||
fish
|
||||
git
|
||||
htop
|
||||
mangohud
|
||||
neovim
|
||||
python3
|
||||
|
|
Loading…
Reference in New Issue