moved some files around

This commit is contained in:
Nickiel12 2023-08-05 09:30:37 -07:00
parent 1f381a46cf
commit 4ec9e1924e
7 changed files with 21 additions and 3 deletions

View file

@ -26,11 +26,22 @@
efiSysMountPoint = "/boot";
};
grub = {
enable = true;
devices = [ "nodev" ];
efiSupport = true;
enable = true;
useOSProber = true;
useOSProber = false;
extraEntries = ''
menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-6877-BD74' {
insmod part_gpt
insmod fat
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 6877-BD74
else
search --no-floppy --fs-uuid --set=root 6877-BD74
fi
chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
'';
};
};

View file

@ -2,6 +2,12 @@
let
in
{
home.packages = with pkgs; [
# Required clipboard provider
xclip
];
programs.nixvim = {
enable = true;
viAlias = true;
@ -9,6 +15,7 @@ in
globals = {
mapleader = " ";
clipboard = "unnamedplus";
};
options = {

View file

@ -23,8 +23,8 @@ in
#../modules/emacs.nix
../modules/fusuma.nix
../modules/git.nix
../modules/rofi.nix
../modules/neovim.nix
../modules/rofi.nix
../modules/wezterm.nix
../modules/xdg.nix
../modules/zsh.nix