Compare commits
4 Commits
34b92a6053
...
77f24c597b
Author | SHA1 | Date |
---|---|---|
|
77f24c597b | |
|
41e862ddf8 | |
|
beb52e86a1 | |
|
4c186b41f6 |
|
@ -10,18 +10,20 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
boot.extraModprobeConfig = '' options bluetooth disable_ertm=1 '';
|
||||||
boot.kernelPackages = pkgs.linuxPackages; # (this is the default) some amdgpu issues on 6.10
|
boot.kernelPackages = pkgs.linuxPackages; # (this is the default) some amdgpu issues on 6.10
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
hardware.bluetooth.enable = true;
|
hardware.bluetooth.enable = true;
|
||||||
|
hardware.bluetooth.powerOnBoot = true;
|
||||||
hardware.xone.enable = true; # support for the xbox controller USB dongle
|
hardware.xone.enable = true; # support for the xbox controller USB dongle
|
||||||
|
|
||||||
networking.hostName = "eshu"; # Define your hostname.
|
networking.hostName = "eshu"; # Define your hostname.
|
||||||
# Pick only one of the below networking options.
|
# Pick only one of the below networking options.
|
||||||
networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
#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.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
# time.timeZone = "Europe/Amsterdam";
|
# time.timeZone = "Europe/Amsterdam";
|
||||||
|
@ -39,14 +41,16 @@
|
||||||
# };
|
# };
|
||||||
|
|
||||||
services.blueman.enable = true;
|
services.blueman.enable = true;
|
||||||
services.getty.autologinUser = "eliribble";
|
services.displayManager = {
|
||||||
environment = {
|
autoLogin.enable = true;
|
||||||
loginShellInit = ''
|
autoLogin.user = "eliribble";
|
||||||
[[ "$(tty)" = "/dev/tty1" ]] && ./gs.sh
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver.enable = true;
|
services.xserver = {
|
||||||
|
displayManager.gdm.enable = true;
|
||||||
|
desktopManager.gnome.enable = true;
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -85,6 +89,7 @@
|
||||||
chezmoi
|
chezmoi
|
||||||
fish
|
fish
|
||||||
git
|
git
|
||||||
|
htop
|
||||||
mangohud
|
mangohud
|
||||||
neovim
|
neovim
|
||||||
python3
|
python3
|
||||||
|
|
Loading…
Reference in New Issue