lappy: switch to sway

This commit is contained in:
2022-06-06 01:17:08 -07:00
parent f1950485e9
commit fa7a2186ca
2 changed files with 9 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, lib, ... }:
# docs: https://nixos.wiki/wiki/Sway # docs: https://nixos.wiki/wiki/Sway
{ {
@@ -27,5 +27,9 @@
alsa.support32Bit = true; # ?? alsa.support32Bit = true; # ??
pulse.enable = true; pulse.enable = true;
}; };
networking.useDHCP = false;
networking.networkmanager.enable = true;
networking.wireless.enable = lib.mkForce false;
} }

View File

@@ -3,14 +3,16 @@
imports = [ imports = [
./../../helpers/universal ./../../helpers/universal
./../../helpers/hardware-x86_64.nix ./../../helpers/hardware-x86_64.nix
./../../helpers/gui/gnome.nix # ./../../helpers/gui/gnome.nix
./../../helpers/gui/sway.nix
./fs.nix ./fs.nix
]; ];
home-manager.users.colin = import ./../../helpers/home-manager-gen-colin.nix { home-manager.users.colin = import ./../../helpers/home-manager-gen-colin.nix {
inherit pkgs lib; inherit pkgs lib;
system = "x86_64-linux"; system = "x86_64-linux";
gui = "gnome"; # gui = "gnome";
gui = "sway";
}; };
# docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion # docs: https://nixos.org/manual/nixos/stable/options.html#opt-system.stateVersion