This commit is contained in:
Tao Tien 2023-09-30 18:12:42 -07:00
parent ed53e0aaf6
commit 388d225b03
2 changed files with 3 additions and 3 deletions

View file

@ -9,10 +9,10 @@
outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }: outputs = { nixpkgs, nixos-hardware, nixpkgs-unstable, ... }:
let let
system-x86 = "x86_64-linux"; system = "x86_64-linux";
overlay-unstable = final: prev: { overlay-unstable = final: prev: {
unstable = import nixpkgs-unstable { unstable = import nixpkgs-unstable {
inherit system-x86; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
}; };

View file

@ -1,4 +1,4 @@
{ lib, pkgs, ... }: { { pkgs, ... }: {
services.xserver.displayManager = { services.xserver.displayManager = {
autoLogin.enable = true; autoLogin.enable = true;
autoLogin.user = "tao"; autoLogin.user = "tao";