mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
trimming
This commit is contained in:
parent
a677d5554b
commit
fbc5917192
3 changed files with 3 additions and 18 deletions
|
|
@ -11,16 +11,9 @@ in
|
||||||
enable = true;
|
enable = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
|
|
||||||
# TODO: Fix declarative setup
|
|
||||||
# extraLuaConfig = import ./config/init.nix;
|
|
||||||
# plugins = with pkgs.vimPlugins; [
|
|
||||||
# LazyVim
|
|
||||||
# ];
|
|
||||||
extraPackages = import ./config/servers.nix { inherit pkgs; };
|
extraPackages = import ./config/servers.nix { inherit pkgs; };
|
||||||
};
|
};
|
||||||
|
|
||||||
# Bandaid fix until I can get the declarative setup working
|
|
||||||
home.file.".config/nvim" = {
|
home.file.".config/nvim" = {
|
||||||
source = ./config/lazyvim;
|
source = ./config/lazyvim;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
|
|
|
||||||
|
|
@ -7,20 +7,12 @@ let
|
||||||
in
|
in
|
||||||
{ options.modules.utils = { enable = mkEnableOption "utils"; };
|
{ options.modules.utils = { enable = mkEnableOption "utils"; };
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
# services.syncthing = {
|
|
||||||
# enable = true;
|
|
||||||
# extraOptions = [
|
|
||||||
# "--gui-adddress:8384"
|
|
||||||
# ];
|
|
||||||
# };
|
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
wget curl tree neofetch
|
wget curl tree neofetch
|
||||||
unzip fping calc qrencode
|
unzip fping calc qrencode
|
||||||
fd pkg-config pciutils
|
fd pkg-config pciutils
|
||||||
neofetch mdbook rsync
|
mdbook rsync docker gcc gnumake
|
||||||
docker gcc gnumake
|
|
||||||
android-studio
|
android-studio
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Locale
|
# Locale
|
||||||
time = {
|
time = {
|
||||||
timeZone = "America/New_York";
|
timeZone = "America/New_York";
|
||||||
};
|
};
|
||||||
|
|
@ -93,7 +93,7 @@
|
||||||
useXkbConfig = true;
|
useXkbConfig = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "socrates";
|
hostName = "socrates";
|
||||||
useDHCP = lib.mkDefault true;
|
useDHCP = lib.mkDefault true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue