mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-20 19:27:03 -04:00
nvim added
This commit is contained in:
parent
f915112ce5
commit
c3c790052f
9 changed files with 210 additions and 150 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "dotfiles/nvim"]
|
||||||
|
path = dotfiles/nvim
|
||||||
|
url = git@github.com:sadanslargehole/nvim.git
|
|
@ -7,7 +7,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[
|
||||||
|
# Include the results of the hardware scan.
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -72,9 +73,12 @@ services.xserver = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"wheel" # Enable ‘sudo’ for the user.
|
"wheel" # Enable ‘sudo’ for the user.
|
||||||
"audio" "sound" "video"
|
"audio"
|
||||||
|
"sound"
|
||||||
|
"video"
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"input" "tty"
|
"input"
|
||||||
|
"tty"
|
||||||
];
|
];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[
|
||||||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" ];
|
||||||
|
@ -14,19 +15,20 @@
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/789aab6a-3f46-4023-9aab-0569bb06bcde";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/789aab6a-3f46-4023-9aab-0569bb06bcde";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/FA5C-26B6";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/FA5C-26B6";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/8d59260c-90c4-440e-8ac6-f0135e90451f"; }
|
[{ device = "/dev/disk/by-uuid/8d59260c-90c4-440e-8ac6-f0135e90451f"; }];
|
||||||
];
|
|
||||||
|
|
||||||
# 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
|
||||||
|
|
|
@ -1,17 +1,67 @@
|
||||||
{ pname, version, src, meta, binaryName, desktopName, autoPatchelfHook
|
{ pname
|
||||||
, makeDesktopItem, lib, stdenv, wrapGAppsHook, makeShellWrapper, alsa-lib, at-spi2-atk
|
, version
|
||||||
, at-spi2-core, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk-pixbuf
|
, src
|
||||||
, glib, gtk3, libcxx, libdrm, libglvnd, libnotify, libpulseaudio, libuuid, libX11
|
, meta
|
||||||
, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes
|
, binaryName
|
||||||
, libXi, libXrandr, libXrender, libXtst, libxcb, libxshmfence, mesa, nspr, nss
|
, desktopName
|
||||||
, pango, systemd, libappindicator-gtk3, libdbusmenu, writeScript, python3, runCommand
|
, autoPatchelfHook
|
||||||
|
, makeDesktopItem
|
||||||
|
, lib
|
||||||
|
, stdenv
|
||||||
|
, wrapGAppsHook
|
||||||
|
, makeShellWrapper
|
||||||
|
, alsa-lib
|
||||||
|
, at-spi2-atk
|
||||||
|
, at-spi2-core
|
||||||
|
, atk
|
||||||
|
, cairo
|
||||||
|
, cups
|
||||||
|
, dbus
|
||||||
|
, expat
|
||||||
|
, fontconfig
|
||||||
|
, freetype
|
||||||
|
, gdk-pixbuf
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, libcxx
|
||||||
|
, libdrm
|
||||||
|
, libglvnd
|
||||||
|
, libnotify
|
||||||
|
, libpulseaudio
|
||||||
|
, libuuid
|
||||||
|
, libX11
|
||||||
|
, libXScrnSaver
|
||||||
|
, libXcomposite
|
||||||
|
, libXcursor
|
||||||
|
, libXdamage
|
||||||
|
, libXext
|
||||||
|
, libXfixes
|
||||||
|
, libXi
|
||||||
|
, libXrandr
|
||||||
|
, libXrender
|
||||||
|
, libXtst
|
||||||
|
, libxcb
|
||||||
|
, libxshmfence
|
||||||
|
, mesa
|
||||||
|
, nspr
|
||||||
|
, nss
|
||||||
|
, pango
|
||||||
|
, systemd
|
||||||
|
, libappindicator-gtk3
|
||||||
|
, libdbusmenu
|
||||||
|
, writeScript
|
||||||
|
, python3
|
||||||
|
, runCommand
|
||||||
, libunity
|
, libunity
|
||||||
, speechd
|
, speechd
|
||||||
, wayland
|
, wayland
|
||||||
, branch
|
, branch
|
||||||
, withOpenASAR ? false, openasar
|
, withOpenASAR ? false
|
||||||
, withVencord ? true, vencord
|
, openasar
|
||||||
, withTTS ? true }:
|
, withVencord ? true
|
||||||
|
, vencord
|
||||||
|
, withTTS ? true
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
disableBreakingUpdates = runCommand "disable-breaking-updates.py"
|
disableBreakingUpdates = runCommand "disable-breaking-updates.py"
|
||||||
|
|
1
dotfiles/nvim
Submodule
1
dotfiles/nvim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit e8190de318225a7f00b45bcddf97db5fb8e135b3
|
Loading…
Add table
Add a link
Reference in a new issue