added tide and removed things from the 'main' config to see if it still works

This commit is contained in:
Christoph Hollizeck 2024-03-26 17:48:15 +01:00
parent 3a9cb6c332
commit 77e8840534
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
4 changed files with 41 additions and 56 deletions

View file

@ -1,39 +1,22 @@
{ pkgs , config , lib, ... }:
{ pkgs, config, lib, ... }:
with lib;
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 = {
@ -45,27 +28,27 @@ with lib.wyrdgard;
xkbVariant = "";
};
environment.variables.EDITOR = "nvim";
environment.variables.SUDOEDITOR = "nvim";
environment.variables.EDITOR = "nvim";
environment.variables.SUDOEDITOR = "nvim";
# Configure Home-Manager options from NixOS.
snowfallorg.user.cholli.home.config = {
programs.kitty= {
theme = "Tokyo Night";
shellIntegration.enableFishIntegration = true;
};
};
programs.kitty = {
theme = "Tokyo Night";
shellIntegration.enableFishIntegration = true;
};
};
wyrdgard = {
apps = {
discord = enabled;
vivaldi = enabled;
};
wyrdgard = {
apps = {
discord = enabled;
vivaldi = enabled;
};
submodules = {
basics = enabled;
};
};
submodules = {
basics = enabled;
};
};
system.stateVersion = "23.11";
}