Compare commits

...

3 Commits

Author SHA1 Message Date
7d522ccc01 Merge pull request 'testing' (#1) from testing into main
Reviewed-on: #1
2024-06-11 19:27:40 -04:00
f68b206aa4 Update configuration.nix 2024-06-11 19:27:01 -04:00
b83a011259 Update configuration.nix
commented colemak layout, added a fix to displaylink, and enabled v4l2loopback
2024-06-11 19:14:15 -04:00

View File

@ -49,7 +49,7 @@ in
#boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.kernelPackages = pkgs.linuxPackages_xanmod_stable;
#boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback evdi ];
networking.hostName = "vincents-hp"; # Define your hostname.
networking.networkmanager.enable = true;
@ -74,7 +74,7 @@ in
# waydroid
#virtualisation.waydroid.enable = true;
# Enable the Cinnamon Desktop Environment.
# Enable the Plasma 6 Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
programs.kdeconnect.enable = true;
@ -82,7 +82,7 @@ in
# Configure keymap in X11
services.xserver = {
xkb.layout = "us";
xkb.variant = "colemak";
#xkb.variant = "colemak";
#xkb.model = "chromebook";
};
services.xserver.xkb.options = "grp:win_space_toggle";
@ -123,7 +123,7 @@ in
isNormalUser = true;
shell = pkgs.fish;
initialPassword = "replaceMe";
extraGroups = [ "wheel" "networkmanager" "lp" "audio" "video" "cdrom" "input" ];
extraGroups = [ "wheel" "networkmanager" "lp" "audio" "video" "cdrom" "input" "dialout" ];
packages = with pkgs; [
# admin tools
clamtk
@ -150,6 +150,9 @@ in
};
};
# ollama
services.ollama.enable = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment = {