Compare commits
No commits in common. "9fb0f80686eda32b05c342ff8c9ab2108509ba1b" and "754404ace10df7c9fc0f5052ef36128b0967b356" have entirely different histories.
9fb0f80686
...
754404ace1
5
Makefile
5
Makefile
@ -1,5 +0,0 @@
|
|||||||
check:
|
|
||||||
alejandra --check ./**/*.nix
|
|
||||||
|
|
||||||
format:
|
|
||||||
alejandra ./**/*.nix
|
|
40
flake.nix
40
flake.nix
@ -34,20 +34,8 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = { self, nixpkgs, unstable, nur, utils, rust-overlay, nix-vscode-extensions, nixos-wsl, vscode-server, darwin, home-manager, ... }@inputs: {
|
||||||
self,
|
|
||||||
nixpkgs,
|
|
||||||
unstable,
|
|
||||||
nur,
|
|
||||||
utils,
|
|
||||||
rust-overlay,
|
|
||||||
nix-vscode-extensions,
|
|
||||||
nixos-wsl,
|
|
||||||
vscode-server,
|
|
||||||
darwin,
|
|
||||||
home-manager,
|
|
||||||
...
|
|
||||||
} @ inputs: {
|
|
||||||
# This repo's overlay plus any other overlays you use
|
# This repo's overlay plus any other overlays you use
|
||||||
# If you want to use packages from flakes that are not nixpkgs (such as NUR), add their overlays here.\
|
# If you want to use packages from flakes that are not nixpkgs (such as NUR), add their overlays here.\
|
||||||
overlays = {
|
overlays = {
|
||||||
@ -67,6 +55,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
|
||||||
loft = nixpkgs.lib.nixosSystem {
|
loft = nixpkgs.lib.nixosSystem {
|
||||||
system = utils.lib.system.x86_64-linux;
|
system = utils.lib.system.x86_64-linux;
|
||||||
modules = [
|
modules = [
|
||||||
@ -107,6 +96,7 @@
|
|||||||
];
|
];
|
||||||
specialArgs = { inherit inputs; };
|
specialArgs = { inherit inputs; };
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
darwinConfigurations = {
|
darwinConfigurations = {
|
||||||
@ -133,11 +123,8 @@
|
|||||||
homeDirectory = "/home/michael";
|
homeDirectory = "/home/michael";
|
||||||
username = "michael";
|
username = "michael";
|
||||||
stateVersion = "21.05";
|
stateVersion = "21.05";
|
||||||
configuration = {
|
configuration = { config, pkgs, ... }:
|
||||||
config,
|
{
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
@ -151,11 +138,8 @@
|
|||||||
homeDirectory = "/home/michael";
|
homeDirectory = "/home/michael";
|
||||||
username = "michael";
|
username = "michael";
|
||||||
stateVersion = "21.05";
|
stateVersion = "21.05";
|
||||||
configuration = {
|
configuration = { config, pkgs, ... }:
|
||||||
config,
|
{
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
@ -169,11 +153,8 @@
|
|||||||
homeDirectory = "/Users/michael";
|
homeDirectory = "/Users/michael";
|
||||||
username = "michael";
|
username = "michael";
|
||||||
stateVersion = "22.05";
|
stateVersion = "22.05";
|
||||||
configuration = {
|
configuration = { config, pkgs, ... }:
|
||||||
config,
|
{
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
@ -182,6 +163,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
# // utils.lib.eachSystem [ "aarch64-linux" "x86_64-darwin" "x86_64-linux" ] (system: {
|
# // utils.lib.eachSystem [ "aarch64-linux" "x86_64-darwin" "x86_64-linux" ] (system: {
|
||||||
# nixpkgs = import nixpkgs {
|
# nixpkgs = import nixpkgs {
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
imports =
|
||||||
pkgs,
|
[ # Include the results of the hardware scan.
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
# Include the results of the hardware scan.
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -73,4 +72,5 @@
|
|||||||
# Before changing this value read the documentation for this option
|
# Before changing this value read the documentation for this option
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "22.05"; # Did you read the comment?
|
system.stateVersion = "22.05"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
@ -1,13 +1,9 @@
|
|||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
|
||||||
|
@ -1,13 +1,12 @@
|
|||||||
# Edit this configuration file to define what should be installed on
|
# Edit this configuration file to define what should be installed on
|
||||||
# your system. Help is available in the configuration.nix(5) man page
|
# your system. Help is available in the configuration.nix(5) man page
|
||||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||||
|
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
imports =
|
||||||
pkgs,
|
[ # Include the results of the hardware scan.
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
|
||||||
# Include the results of the hardware scan.
|
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -69,8 +68,7 @@
|
|||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget micro
|
||||||
micro
|
|
||||||
google-chrome
|
google-chrome
|
||||||
gnome3.gnome-tweaks
|
gnome3.gnome-tweaks
|
||||||
gnomeExtensions.gsconnect
|
gnomeExtensions.gsconnect
|
||||||
@ -102,4 +100,5 @@
|
|||||||
# Before changing this value read the documentation for this option
|
# Before changing this value read the documentation for this option
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "20.09"; # Did you read the comment?
|
system.stateVersion = "20.09"; # Did you read the comment?
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||||
# and may be overwritten by future invocations. Please make changes
|
# and may be overwritten by future invocations. Please make changes
|
||||||
# to /etc/nixos/configuration.nix instead.
|
# to /etc/nixos/configuration.nix instead.
|
||||||
|
{ config, lib, pkgs, modulesPath, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
modulesPath,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
config,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
users.users.michael = {
|
users.users.michael = {
|
||||||
home = "/Users/michael";
|
home = "/Users/michael";
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.zsh;
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
{
|
{ lib, pkgs, modulesPath, inputs, ... }:
|
||||||
lib,
|
|
||||||
pkgs,
|
with lib;
|
||||||
modulesPath,
|
let
|
||||||
inputs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
with lib; let
|
|
||||||
defaultUser = "michael";
|
defaultUser = "michael";
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
"${modulesPath}/profiles/minimal.nix"
|
"${modulesPath}/profiles/minimal.nix"
|
||||||
|
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
# Enable Podman w/ docker compose compatibility
|
# Enable Podman w/ docker compose compatibility
|
||||||
virtualisation.podman = {
|
virtualisation.podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
# Enable CUPS to print documents.
|
# Enable CUPS to print documents.
|
||||||
services.printing = {
|
services.printing = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
# Font Settings
|
# Font Settings
|
||||||
fonts = {
|
fonts = {
|
||||||
fonts = with pkgs; [
|
fonts = with pkgs; [
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
nix = {
|
nix = {
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
experimental-features = flakes nix-command
|
experimental-features = flakes nix-command
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
{
|
{ nixpkgs, unstable, ... }:
|
||||||
nixpkgs,
|
|
||||||
unstable,
|
let
|
||||||
...
|
|
||||||
}: let
|
|
||||||
inherit (nixpkgs.lib) composeManyExtensions;
|
inherit (nixpkgs.lib) composeManyExtensions;
|
||||||
inherit (builtins) attrNames readDir;
|
inherit (builtins) attrNames readDir;
|
||||||
localOverlays =
|
localOverlays = map
|
||||||
map
|
|
||||||
(f: import (./default + "/${f}"))
|
(f: import (./default + "/${f}"))
|
||||||
(attrNames (readDir ./default));
|
(attrNames (readDir ./default));
|
||||||
in
|
in
|
||||||
composeManyExtensions localOverlays
|
composeManyExtensions (localOverlays)
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
self: super: {
|
self: super: {
|
||||||
gnomeExtensions =
|
gnomeExtensions = super.gnomeExtensions // {
|
||||||
super.gnomeExtensions
|
|
||||||
// {
|
|
||||||
paperwm = super.gnomeExtensions.paperwm.overrideDerivation (old: {
|
paperwm = super.gnomeExtensions.paperwm.overrideDerivation (old: {
|
||||||
version = "43.0";
|
version = "43.0";
|
||||||
src = super.fetchFromGitHub {
|
src = super.fetchFromGitHub {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/zsh.nix
|
../../modules/zsh.nix
|
||||||
../../modules/dev.nix
|
../../modules/dev.nix
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
../../modules/dev.nix
|
../../modules/dev.nix
|
||||||
../../modules/git.nix
|
../../modules/git.nix
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# devbox
|
# devbox
|
||||||
unstable.devbox
|
unstable.devbox
|
||||||
@ -17,7 +18,7 @@
|
|||||||
kubernetes-helm
|
kubernetes-helm
|
||||||
# Nix
|
# Nix
|
||||||
nil
|
nil
|
||||||
alejandra
|
nixpkgs-fmt
|
||||||
# Rust
|
# Rust
|
||||||
(rust-bin.stable.latest.default.override {
|
(rust-bin.stable.latest.default.override {
|
||||||
extensions = [ "rust-src" ];
|
extensions = [ "rust-src" ];
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
# Add Firefox GNOME theme directory
|
# Add Firefox GNOME theme directory
|
||||||
home.file."firefox-gnome-theme" = {
|
home.file."firefox-gnome-theme" = {
|
||||||
target = ".mozilla/firefox/default/chrome/firefox-gnome-theme";
|
target = ".mozilla/firefox/default/chrome/firefox-gnome-theme";
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
||||||
google-fonts
|
google-fonts
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
lib,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
git-lfs
|
git-lfs
|
||||||
];
|
];
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
# Use pkgs.gitAndTools.gitFull in order to get libsecret support
|
||||||
programs.git = {
|
programs.git = {
|
||||||
package = pkgs.gitAndTools.gitFull;
|
package = pkgs.gitAndTools.gitFull;
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
gnomeExtensions.caffeine
|
gnomeExtensions.caffeine
|
||||||
unstable.gnomeExtensions.paperwm
|
unstable.gnomeExtensions.paperwm
|
||||||
|
@ -1,8 +1,5 @@
|
|||||||
|
{ pkgs, config, ... }:
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
@ -12,8 +9,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Copy Neovim config
|
# Copy Neovim config
|
||||||
xdg.configFile.nvim.source =
|
xdg.configFile.nvim.source = config.lib.file.mkOutOfStoreSymlink
|
||||||
config.lib.file.mkOutOfStoreSymlink
|
|
||||||
"${config.home.homeDirectory}/Projects/nix-dots/user/modules/nvim";
|
"${config.home.homeDirectory}/Projects/nix-dots/user/modules/nvim";
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
-- Keymaps are automatically loaded on the VeryLazy event
|
-- Keymaps are automatically loaded on the VeryLazy event
|
||||||
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
|
||||||
-- Add any additional keymaps here
|
-- Add any additional keymaps here
|
||||||
|
|
||||||
local keymap = vim.keymap
|
|
||||||
|
|
||||||
-- Select all
|
|
||||||
keymap.set("n", "<C-a>", "gg<S-v>G$")
|
|
||||||
|
@ -42,14 +42,4 @@ return {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"stevearc/conform.nvim",
|
|
||||||
---@class ConformOpts
|
|
||||||
opts = {
|
|
||||||
---@type table<string, conform.FormatterUnit[]>
|
|
||||||
formatters_by_ft = {
|
|
||||||
nix = { "alejandra" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
@ -1,24 +1,20 @@
|
|||||||
{
|
{ config, pkgs, ... }:
|
||||||
config,
|
|
||||||
pkgs,
|
let
|
||||||
...
|
|
||||||
}: let
|
|
||||||
package = pkgs.vscodium;
|
package = pkgs.vscodium;
|
||||||
|
|
||||||
vscodePname = package.pname;
|
vscodePname = package.pname;
|
||||||
|
|
||||||
configDir =
|
configDir = {
|
||||||
{
|
|
||||||
"vscode" = "Code";
|
"vscode" = "Code";
|
||||||
"vscode-insiders" = "Code - Insiders";
|
"vscode-insiders" = "Code - Insiders";
|
||||||
"vscodium" = "VSCodium";
|
"vscodium" = "VSCodium";
|
||||||
}
|
}.${vscodePname};
|
||||||
.${vscodePname};
|
|
||||||
|
|
||||||
userDir =
|
userDir = if pkgs.stdenv.hostPlatform.isDarwin then
|
||||||
if pkgs.stdenv.hostPlatform.isDarwin
|
"Library/Application Support/${configDir}/User"
|
||||||
then "Library/Application Support/${configDir}/User"
|
else
|
||||||
else "${config.xdg.configHome}/${configDir}/User";
|
"${config.xdg.configHome}/${configDir}/User";
|
||||||
|
|
||||||
configFilePath = "${userDir}/settings.json";
|
configFilePath = "${userDir}/settings.json";
|
||||||
keybindingsFilePath = "${userDir}/keybindings.json";
|
keybindingsFilePath = "${userDir}/keybindings.json";
|
||||||
@ -43,9 +39,6 @@ in {
|
|||||||
mhutchie.git-graph
|
mhutchie.git-graph
|
||||||
waderyan.gitblame
|
waderyan.gitblame
|
||||||
|
|
||||||
# SQL
|
|
||||||
qwtel.sqlite-viewer
|
|
||||||
|
|
||||||
# Web Development
|
# Web Development
|
||||||
astro-build.astro-vscode
|
astro-build.astro-vscode
|
||||||
redwan-hossain.auto-rename-tag-clone
|
redwan-hossain.auto-rename-tag-clone
|
||||||
@ -56,7 +49,6 @@ in {
|
|||||||
esbenp.prettier-vscode
|
esbenp.prettier-vscode
|
||||||
antfu.iconify
|
antfu.iconify
|
||||||
csstools.postcss
|
csstools.postcss
|
||||||
ms-playwright.playwright
|
|
||||||
|
|
||||||
# Dart / Flutter
|
# Dart / Flutter
|
||||||
dart-code.dart-code
|
dart-code.dart-code
|
||||||
@ -70,7 +62,6 @@ in {
|
|||||||
|
|
||||||
# Nix
|
# Nix
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
kamadorueda.alejandra
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -147,7 +147,9 @@
|
|||||||
"[dart]": {
|
"[dart]": {
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.formatOnType": true,
|
"editor.formatOnType": true,
|
||||||
"editor.rulers": [80],
|
"editor.rulers": [
|
||||||
|
80
|
||||||
|
],
|
||||||
"editor.selectionHighlight": false,
|
"editor.selectionHighlight": false,
|
||||||
"editor.suggestSelection": "first",
|
"editor.suggestSelection": "first",
|
||||||
"editor.tabCompletion": "onlySnippets",
|
"editor.tabCompletion": "onlySnippets",
|
||||||
@ -156,7 +158,7 @@
|
|||||||
"[svelte]": {
|
"[svelte]": {
|
||||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||||
},
|
},
|
||||||
|
"workbench.colorTheme": "Min Dark",
|
||||||
"nix.enableLanguageServer": true,
|
"nix.enableLanguageServer": true,
|
||||||
"nix.serverPath": "nil",
|
"nix.serverPath": "nil"
|
||||||
"workbench.colorTheme": "Min Dark"
|
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
{pkgs, ...}: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = [
|
plugins = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user