diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-11-01 15:40:03 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-11-01 15:40:03 -0400 |
| commit | 2d86b0dbd47ddb9fb3d68632e6a3ad1243936c49 (patch) | |
| tree | 6cc4fc5bb63292029c540b92d90f64592128b210 | |
| parent | 3caa0c878b3e2443e97c1673413966186504af9e (diff) | |
| download | home-2d86b0dbd47ddb9fb3d68632e6a3ad1243936c49.tar.gz | |
idk
| -rw-r--r-- | form/hardware-configuration.nix | 50 | ||||
| -rw-r--r-- | form/home.nix | 5 | ||||
| -rw-r--r-- | modules/default.nix | 1 | ||||
| -rw-r--r-- | modules/firefox.nix | 1 | ||||
| -rw-r--r-- | packages/ida.nix | 2 |
5 files changed, 24 insertions, 35 deletions
diff --git a/form/hardware-configuration.nix b/form/hardware-configuration.nix index a7d05eb..b3710d1 100644 --- a/form/hardware-configuration.nix +++ b/form/hardware-configuration.nix @@ -1,48 +1,32 @@ # Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. -{ - config, - lib, - pkgs, - modulesPath, - ... -}: +{ config, lib, pkgs, modulesPath, ... }: { - imports = [ - (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ - "nvme" - "xhci_pci" - "ahci" - "usb_storage" - "usbhid" - "sd_mod" - ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = { - device = "/dev/disk/by-uuid/1e39c424-417d-4218-8655-de4bb9ad57b3"; - fsType = "ext4"; - }; + fileSystems."/" = + { device = "/dev/disk/by-uuid/1064fe3b-8f30-4e07-8ea7-23b1329716e9"; + fsType = "ext4"; + }; - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/F50B-956E"; - fsType = "vfat"; - options = [ - "fmask=0077" - "dmask=0077" - ]; - }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/52C3-F4E7"; + fsType = "vfat"; + options = [ "fmask=0077" "dmask=0077" ]; + }; - swapDevices = [ - { device = "/dev/disk/by-uuid/6fa8f3f6-f884-4879-9c11-90340ff6b3c2"; } - ]; + swapDevices = + [ { device = "/dev/disk/by-uuid/e60c1742-1aff-45ff-a26b-b63d81cf1fad"; } + ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's diff --git a/form/home.nix b/form/home.nix index 417abde..9967f28 100644 --- a/form/home.nix +++ b/form/home.nix @@ -23,8 +23,11 @@ ]; }; - colors.mountain.enable = true; + # colors.mountain.enable = true; + colors.adwaita-dark.enable = true; # colors.tomorrow.enable = true; + + ghidra.enable = true; gpg.enable = true; pass = { diff --git a/modules/default.nix b/modules/default.nix index 601b51a..04285f0 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -4,6 +4,7 @@ ./aerc.nix ./scheme ./foot.nix + ./ghidra.nix ./mako.nix ./neovide.nix ./fuzzel.nix diff --git a/modules/firefox.nix b/modules/firefox.nix index 004eb63..f032956 100644 --- a/modules/firefox.nix +++ b/modules/firefox.nix @@ -31,6 +31,7 @@ in enable = true; nativeMessagingHosts = [ pkgs.tridactyl-native + pkgs.passff-host ]; policies = { DisableTelemetry = true; diff --git a/packages/ida.nix b/packages/ida.nix index 486d883..c497585 100644 --- a/packages/ida.nix +++ b/packages/ida.nix @@ -47,7 +47,7 @@ pkgs.buildFHSEnv rec { ]; runScript = pkgs.writeScript "idapro.sh" '' set -e - # ~/ida-pro-9.1/idapyswitch --auto-apply + ~/ida-pro-9.1/idapyswitch --auto-apply exec "~/ida-pro-9.1/ida" ''; meta = { |