feat(alex): more stuff to get alex installed

This commit is contained in:
Ashhhleyyy 2023-10-02 19:30:34 +01:00
parent 779cddf4ac
commit 14f3268524
Signed by: ash
GPG key ID: 83B789081A0878FB
3 changed files with 9 additions and 0 deletions

5
common/generic-grub.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs, ... }: {
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
}

View file

@ -1,6 +1,8 @@
{ pkgs, ... }: rec { { pkgs, ... }: rec {
imports = [ ]; imports = [ ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
nix.settings.auto-optimise-store = true; nix.settings.auto-optimise-store = true;

View file

@ -28,6 +28,8 @@
services.printing.enable = true; services.printing.enable = true;
hardware.bluetooth.enable = true;
programs.steam.enable = true; programs.steam.enable = true;
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;