···11 slack
12 firefox
13 postman
14- gearlever # for beeper cause the one from the nixpkgs seems bugged
15- strawberry # for itunes lib and need to test if upload to ipod works
16 parsec-bin
17 libreoffice
18 self.packages.${pkgs.stdenv.hostPlatform.system}.adjust-brightness # for adjusting brightness on ddc/ci screen
···1-# Do not modify this file! It was generated by โnixos-generate-configโ
2-# and may be overwritten by future invocations. Please make changes
3-# to /etc/nixos/configuration.nix instead.
4{
5 config,
6 lib,
···21 "sd_mod"
22 "rtsx_pci_sdmmc"
23 ];
24- boot.initrd.kernelModules = [ ];
25- # boot.kernelModules = [ "kvm-intel" ];
26- boot.extraModulePackages = [ ];
2728- # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
29- # (the default) this is the recommended approach. When using systemd-networkd it's
30- # still possible to use this option, but it's recommended to use it in conjunction
31- # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
32 networking.useDHCP = lib.mkDefault true;
33- # networking.interfaces.wlp59s0.useDHCP = lib.mkDefault true;
3435 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
36 hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
···1415 networking.hostName = "MINI-BOYY";
1617- # For ddcutils compatibility
18 users.users.adjoly.extraGroups = [
19 "i2c"
20 "vboxusers"
···34 programs = {
35 docker.enable = true;
36 };
37- services = {
38- };
39 };
40 powerManagement.enable = true;
41- # environment.systemPackages = with pkgs; [
42- # ];
4344- programs.wireshark.enable = true;
45-46- # This value determines the NixOS release from which the default
47- # settings for stateful data, like file locations and database versions
48- # on your system were taken. Itโs perfectly fine and recommended to leave
49- # this value at the release version of the first install of this system.
50- # Before changing this value read the documentation for this option
51- # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
52- system.stateVersion = "24.11"; # Did you read the comment?
53}