Compare commits
No commits in common. "e46c6d3fee99f205e113961579f7364416b8a757" and "935b05fdf7ab10fecfed307f5b3a2fa7bd6cfbd5" have entirely different histories.
e46c6d3fee
...
935b05fdf7
|
@ -4,20 +4,24 @@
|
|||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
imports = [ ];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" ];
|
||||
boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-intel" ];
|
||||
boot.kernelModules = [ ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/6cc799fb-b823-4f6f-b4af-da6a9e0974a4";
|
||||
{ device = "/dev/disk/by-uuid/ec8ceed7-4d76-46ce-b270-a9c505a1b336";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/E842-22E1";
|
||||
fsType = "vfat";
|
||||
options = [ "fmask=0077" "dmask=0077" ];
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
@ -25,10 +29,8 @@
|
|||
# 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`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp0s20f0u3.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp0s3.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
virtualisation.virtualbox.guest.enable = true;
|
||||
}
|
||||
|
|
|
@ -20,15 +20,8 @@
|
|||
home.sessionVariables = {
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# programs.git = {
|
||||
# userEmail = "kylerolsen17@gmail.com";
|
||||
# userName = "Kyler Olsen";
|
||||
# };
|
||||
|
||||
# This value determines the Home Manager release that your configuration is
|
||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||
# introduces backwards incompatible changes.
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
wl-clipboard
|
||||
dolphin
|
||||
wofi
|
||||
google-chrome
|
||||
firefox
|
||||
# google-chrome-stable
|
||||
# firefox
|
||||
];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
|
@ -54,8 +54,8 @@
|
|||
# Internet Browsers
|
||||
# "$mainMod, B, exec, google-chrome-stable --profile-directory=\"Default\" --new-window"
|
||||
# "$mainMod ALT, B, exec, google-chrome-stable --profile-directory=\"Profile 1\" --new-window"
|
||||
"$mainMod, B, exec, google-chrome-stable"
|
||||
"$mainMod ALT, B, exec, firefox"
|
||||
# "$mainMod, B, exec, google-chrome-stable"
|
||||
# "$mainMod ALT, B, exec, firefox"
|
||||
|
||||
# Minecraft
|
||||
# "$mainMod, N, exec, multimc -l \"Dragon Egg Dome\""
|
||||
|
|
|
@ -7,13 +7,8 @@
|
|||
./hyprland.nix
|
||||
];
|
||||
|
||||
# boot.loader.systemd-boot.enable = true;
|
||||
# boot.loader.efi.canTouchEfiVariables = true;
|
||||
# boot.loader.efi.efiSysMountPoint = "/boot";
|
||||
|
||||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/nvme0n1";
|
||||
boot.loader.grub.useOSProber = true;
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "moonk4-l"; # Define your hostname.
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
default_session = {
|
||||
command = "${pkgs.greetd.greetd}/bin/agreety --cmd Hyprland";
|
||||
};
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
programs.hyprland = {
|
||||
|
|
Loading…
Reference in New Issue