This commit is contained in:
shibazaki 2025-05-02 07:49:00 +02:00
parent b22e1d3c83
commit 363577cad3
6 changed files with 13 additions and 14 deletions

View File

@ -30,6 +30,7 @@ in {
gtk-layer-shell = true; gtk-layer-shell = true;
reload_style_on_change = true; reload_style_on_change = true;
output = [ output = [
"eDP-1"
"eDP-2" "eDP-2"
"HDMI-A-1" "HDMI-A-1"
]; ];

View File

@ -12,7 +12,7 @@
inkscape inkscape
aseprite aseprite
godot_4-mono godot_4-mono
ciscoPacketTracer8 #ciscoPacketTracer8
bruno bruno

View File

@ -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-OpdUeFzFAWi1ur2nKt4WSWJqj/J/4iigSmxMBCOGg+w="; sha256 = "sha256-RFVkUhXmRS/cbZPBaUwV+I5NtLJZYcltxFpygqdp9Vg";
}; };
appimageContents = appimageTools.extract { appimageContents = appimageTools.extract {

View File

@ -19,7 +19,8 @@
./../../nixos/system/stylix.nix ./../../nixos/system/stylix.nix
./../../nixos/system/system-settings.nix ./../../nixos/system/system-settings.nix
./../../nixos/system/neovim.nix ./../../nixos/system/neovim.nix
./../../nixos/system/libgcc.nix ./../../nixos/system/system-packages.nix
./../../nixos/system/steam.nix
]; ];
# Global configuration # Global configuration

View File

@ -8,24 +8,24 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/6fcd74de-bf90-4d71-8094-07a13864ccf7"; { device = "/dev/disk/by-uuid/5da2ec12-421e-47b7-a599-a18cb46279a9";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/115C-64F5"; { device = "/dev/disk/by-uuid/FFC1-07B9";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ]; options = [ "fmask=0077" "dmask=0077" ];
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/5c530ba1-8990-4372-9d18-5d6107009ba8"; } [ { device = "/dev/disk/by-uuid/53c09675-dfb9-4afc-a94e-c4285e46921b"; }
]; ];
# 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
@ -33,8 +33,7 @@
# 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.enp2s0f1.useDHCP = lib.mkDefault true; # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp0s20f3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

View File

@ -1,8 +1,4 @@
{ {...}: {
pkgs,
lib,
...
}: {
home.username = "nine"; home.username = "nine";
home.homeDirectory = "/home/nine"; home.homeDirectory = "/home/nine";
@ -20,9 +16,11 @@
./../../nixos/home/modules/environment.nix ./../../nixos/home/modules/environment.nix
./../../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
]; ];
cybersec.enable = true; cybersec.enable = true;
desktop.hyprland.waybar.enable = true;
home.stateVersion = "24.11"; # Please read the comment before changing. home.stateVersion = "24.11"; # Please read the comment before changing.
} }