mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
moved some files around
This commit is contained in:
parent
1f381a46cf
commit
4ec9e1924e
7 changed files with 21 additions and 3 deletions
|
@ -26,11 +26,22 @@
|
||||||
efiSysMountPoint = "/boot";
|
efiSysMountPoint = "/boot";
|
||||||
};
|
};
|
||||||
grub = {
|
grub = {
|
||||||
|
enable = true;
|
||||||
devices = [ "nodev" ];
|
devices = [ "nodev" ];
|
||||||
efiSupport = true;
|
efiSupport = true;
|
||||||
enable = true;
|
useOSProber = false;
|
||||||
useOSProber = true;
|
|
||||||
extraEntries = ''
|
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
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
let
|
let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
# Required clipboard provider
|
||||||
|
xclip
|
||||||
|
];
|
||||||
|
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
|
@ -9,6 +15,7 @@ in
|
||||||
|
|
||||||
globals = {
|
globals = {
|
||||||
mapleader = " ";
|
mapleader = " ";
|
||||||
|
clipboard = "unnamedplus";
|
||||||
};
|
};
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
|
@ -23,8 +23,8 @@ in
|
||||||
#../modules/emacs.nix
|
#../modules/emacs.nix
|
||||||
../modules/fusuma.nix
|
../modules/fusuma.nix
|
||||||
../modules/git.nix
|
../modules/git.nix
|
||||||
../modules/rofi.nix
|
|
||||||
../modules/neovim.nix
|
../modules/neovim.nix
|
||||||
|
../modules/rofi.nix
|
||||||
../modules/wezterm.nix
|
../modules/wezterm.nix
|
||||||
../modules/xdg.nix
|
../modules/xdg.nix
|
||||||
../modules/zsh.nix
|
../modules/zsh.nix
|
||||||
|
|
Loading…
Reference in a new issue