mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 01:21:39 +01:00
formatting
This commit is contained in:
parent
d0eb57ed91
commit
b135818747
5 changed files with 254 additions and 249 deletions
|
@ -6,11 +6,11 @@
|
||||||
"utils": "utils"
|
"utils": "utils"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1671335968,
|
"lastModified": 1671459164,
|
||||||
"narHash": "sha256-V7mjlh7brp70elokmml6XzHinpTilkQJjiYIGjEmSGs=",
|
"narHash": "sha256-RbkDnvLV7WjbiF4Dpiezrf8kXxwieQXAVtY8ciRQj6Q=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "37713c6b04b963d41664e03576f73a18c9b0d224",
|
"rev": "e7eba9cc46547ae86642ad3c6a9a4fb22c07bc26",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
[
|
||||||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "usbhid" "sd_mod" "sdhci_pci" ];
|
||||||
|
@ -14,12 +15,14 @@
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/8633a706-bf54-4d29-9fba-dbcffd723ab6";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/8633a706-bf54-4d29-9fba-dbcffd723ab6";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/3A2E-1AB6";
|
{
|
||||||
|
device = "/dev/disk/by-uuid/3A2E-1AB6";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,7 @@
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# plugins = [ "zsh-autosuggestions" "fzf-tab" ];
|
# plugins = [ "zsh-autosuggestions" "fzf-tab" ];
|
||||||
theme="agnoster";
|
theme = "agnoster";
|
||||||
};
|
};
|
||||||
|
|
||||||
plugins = [
|
plugins = [
|
||||||
|
@ -129,8 +129,8 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
localVariables = {
|
localVariables = {
|
||||||
COMPLETION_WAITING_DOTS="true";
|
COMPLETION_WAITING_DOTS = "true";
|
||||||
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=#00bbbb,bold";
|
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=#00bbbb,bold";
|
||||||
# ZSH_AUTOSUGGEST_STRATEGY="(history completion)";
|
# ZSH_AUTOSUGGEST_STRATEGY="(history completion)";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -186,8 +186,10 @@
|
||||||
nerdtree
|
nerdtree
|
||||||
nerdcommenter
|
nerdcommenter
|
||||||
fugitive-gitlab-vim
|
fugitive-gitlab-vim
|
||||||
vim-repeat vim-airline
|
vim-repeat
|
||||||
fzf-vim dracula-vim
|
vim-airline
|
||||||
|
fzf-vim
|
||||||
|
dracula-vim
|
||||||
vim-nix # this destroys my tab settings, ffs
|
vim-nix # this destroys my tab settings, ffs
|
||||||
];
|
];
|
||||||
extraConfig =
|
extraConfig =
|
||||||
|
|
Loading…
Reference in a new issue