added tide and removed things from the 'main' config to see if it still works
This commit is contained in:
parent
17bd0f8861
commit
208e4947a5
|
@ -16,7 +16,8 @@ in
|
|||
|
||||
shellAliases = {
|
||||
vim = "nvim";
|
||||
vimdiff = "nvim -d"; };
|
||||
vimdiff = "nvim -d";
|
||||
};
|
||||
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
|
|
|
@ -5,7 +5,8 @@ with lib.wyrdgard;
|
|||
|
||||
let
|
||||
cfg = config.wyrdgard.tools.nix-ld;
|
||||
in {
|
||||
in
|
||||
{
|
||||
options.wyrdgard.tools.nix-ld = with types; {
|
||||
enable = mkBoolOpt false "Wether or not to enable nix-ld";
|
||||
};
|
||||
|
|
|
@ -4,36 +4,19 @@ with lib.wyrdgard;
|
|||
{
|
||||
imports = [ ./hardware.nix ];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.blacklistedKernelModules = [ "hyperv-fb" ];
|
||||
virtualisation.hypervGuest.videoMode = "1920x1080";
|
||||
|
||||
users.users.cholli = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" ];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
snowfallorg.flake
|
||||
git
|
||||
gitAndTools.gh
|
||||
kitty
|
||||
fish
|
||||
vivaldi
|
||||
fishPlugins.tide
|
||||
|
||||
fd
|
||||
tree
|
||||
ripgrep
|
||||
|
||||
nixfmt
|
||||
];
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.sddm = {
|
||||
|
|
Loading…
Reference in a new issue