Merge branch 'main' of ssh://git.0x76.dev:42/v/infrastructure
All checks were successful
Lint / lint (push) Successful in 1s
Plex Update / update (push) Successful in 8s

This commit is contained in:
Vivian 2023-06-01 10:28:50 +02:00
commit dca5e6db75
24 changed files with 497 additions and 197 deletions

View file

@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, inputs, ... }: {
{ pkgs, ... }: {
imports = [ ./hardware-configuration.nix ./hardware.nix ];
# Bootloader.
@ -41,10 +41,7 @@
environment.sessionVariables.NIXOS_OZONE_WL = "1";
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.victor = import ./home;
extraSpecialArgs = { inherit inputs; };
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions

View file

@ -22,6 +22,11 @@
driSupport = true;
};
hardware.logitech.wireless = {
enable = true;
enableGraphical = true;
};
# udev
services.udev.packages = with pkgs; [
android-udev-rules

View file

@ -1,12 +1,4 @@
_: {
programs.home-manager.enable = true;
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "23.05";
imports = [ ../../../../common/desktop/home.nix ];
dconf.settings."org/gnome/desktop/peripherals/mouse" = {
accel-profile = "flat";
};