update notas
This commit is contained in:
parent
fcda92dfa8
commit
7a415455c9
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/zen-browser/desktop/releases/latest/download/zen-x86_64.AppImage";
|
url = "https://github.com/zen-browser/desktop/releases/latest/download/zen-x86_64.AppImage";
|
||||||
sha256 = "sha256-kS4nuYgfCFhwctFKdf76EKLCQL7+oZdHw82iLNSTCs4=";
|
sha256 = "sha256-S3ebA1sXfrY3hXHlLetCiH9bUS1QAjJgj914O2EQB/0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
appimageContents = appimageTools.extract {
|
appimageContents = appimageTools.extract {
|
||||||
|
|||||||
@ -8,29 +8,32 @@
|
|||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "sdhci_pci" ];
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||||
boot.initrd.kernelModules = [ ];
|
boot.initrd.kernelModules = [ ];
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/1e45e24e-c1a4-45e5-854d-cc7391b9b058";
|
{ device = "/dev/disk/by-uuid/c19f3c61-5659-445b-8f11-d33db9f7bd02";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/5C4C-5AB5";
|
{ device = "/dev/disk/by-uuid/692B-CE82";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices =
|
||||||
|
[ { device = "/dev/disk/by-uuid/97f534e0-7105-4e91-9f6f-c5e91eeb4053"; }
|
||||||
|
];
|
||||||
|
|
||||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
# 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
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||||
# still possible to use this option, but it's recommended to use it in conjunction
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||||
networking.useDHCP = lib.mkDefault true;
|
networking.useDHCP = lib.mkDefault true;
|
||||||
|
# networking.interfaces.enp8s0f4u1.useDHCP = lib.mkDefault true;
|
||||||
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
|
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
|
||||||
|
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|||||||
@ -21,6 +21,8 @@
|
|||||||
./../../nixos/home/modules/session-variables.nix
|
./../../nixos/home/modules/session-variables.nix
|
||||||
./../../nixos/home/modules/cybersec-tools.nix
|
./../../nixos/home/modules/cybersec-tools.nix
|
||||||
./../../nixos/home/imports/waybar.nix
|
./../../nixos/home/imports/waybar.nix
|
||||||
|
./../../nixos/home/modules/scripts.nix
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
cybersec.enable = true;
|
cybersec.enable = true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user