My NixOS config, I don't know what I am doing, don't use this
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup

+6 -14
+1 -1
flake.nix
··· 18 18 }; 19 19 }; 20 20 21 - outputs = { self, nixpkgs, nixos-hardware, catppuccin, home-manager, ... }@inputs: 21 + outputs = { nixpkgs, catppuccin, home-manager, ... }@inputs: 22 22 let 23 23 username = "desoroxxx"; 24 24
+1 -1
hosts/Natsuki/default.nix
··· 1 - { config, lib, pkgs, inputs, username, hostname, ... }: 1 + { pkgs, inputs, username, hostname, ... }: 2 2 let 3 3 stdOpts = [ "compress=zstd:3" "noatime" "ssd" "discard=async" ]; 4 4 cacheOpts = [ "compress=zstd:1" "noatime" "ssd" "discard=async" ];
+2 -10
hosts/Natsuki/hardware-configuration.nix
··· 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 - { config, lib, pkgs, modulesPath, ... }: 5 - 1 + { config, lib, modulesPath, ... }: 6 2 { 7 - imports = 8 - [ (modulesPath + "/installer/scan/not-detected.nix") 9 - ]; 3 + imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; 10 4 11 5 boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "uas" "usb_storage" "sd_mod" ]; 12 6 boot.initrd.kernelModules = [ ]; ··· 60 54 fsType = "vfat"; 61 55 options = [ "fmask=0022" "dmask=0022" ]; 62 56 }; 63 - 64 - swapDevices = [ ]; 65 57 66 58 nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; 67 59 hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
+1 -1
modules/common.nix
··· 1 - { inputs, config, lib, pkgs, username, ... }: 1 + { inputs, pkgs, username, ... }: 2 2 { 3 3 # ── Boot ─────────────────────────────────────────────────────────────────── 4 4 boot.loader.systemd-boot.enable = true;
+1 -1
packages/fluent-emoji.nix
··· 1 1 { lib, stdenvNoCC, fetchurl }: 2 2 3 - stdenvNoCC.mkDerivation rec { 3 + stdenvNoCC.mkDerivation { 4 4 pname = "fluent-emoji-color"; 5 5 version = "unstable"; 6 6