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 = {
|
shellAliases = {
|
||||||
vim = "nvim";
|
vim = "nvim";
|
||||||
vimdiff = "nvim -d"; };
|
vimdiff = "nvim -d";
|
||||||
|
};
|
||||||
|
|
||||||
stateVersion = "23.11";
|
stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
|
|
|
@ -6,12 +6,12 @@ in
|
||||||
{
|
{
|
||||||
options.wyrdgard.apps.vivaldi = with types; {
|
options.wyrdgard.apps.vivaldi = with types; {
|
||||||
enable = mkBoolOpt false "Whether or not to enable vivaldi browser";
|
enable = mkBoolOpt false "Whether or not to enable vivaldi browser";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vivaldi
|
vivaldi
|
||||||
vivaldi-ffmpeg-codecs
|
vivaldi-ffmpeg-codecs
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,8 @@ with lib.wyrdgard;
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.wyrdgard.tools.nix-ld;
|
cfg = config.wyrdgard.tools.nix-ld;
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
options.wyrdgard.tools.nix-ld = with types; {
|
options.wyrdgard.tools.nix-ld = with types; {
|
||||||
enable = mkBoolOpt false "Wether or not to enable nix-ld";
|
enable = mkBoolOpt false "Wether or not to enable nix-ld";
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,39 +1,22 @@
|
||||||
{ pkgs , config , lib, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
with lib.wyrdgard;
|
with lib.wyrdgard;
|
||||||
{
|
{
|
||||||
imports = [ ./hardware.nix ];
|
imports = [ ./hardware.nix ];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
boot.blacklistedKernelModules = [ "hyperv-fb" ];
|
boot.blacklistedKernelModules = [ "hyperv-fb" ];
|
||||||
virtualisation.hypervGuest.videoMode = "1920x1080";
|
virtualisation.hypervGuest.videoMode = "1920x1080";
|
||||||
|
|
||||||
users.users.cholli = {
|
|
||||||
isNormalUser = true;
|
|
||||||
extraGroups = [ "wheel" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
neovim
|
|
||||||
snowfallorg.flake
|
|
||||||
git
|
|
||||||
gitAndTools.gh
|
|
||||||
kitty
|
kitty
|
||||||
fish
|
fish
|
||||||
vivaldi
|
fishPlugins.tide
|
||||||
|
|
||||||
fd
|
fd
|
||||||
tree
|
tree
|
||||||
ripgrep
|
ripgrep
|
||||||
|
|
||||||
nixfmt
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
|
|
||||||
networking.networkmanager.enable = true;
|
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
displayManager.sddm = {
|
displayManager.sddm = {
|
||||||
|
@ -50,11 +33,11 @@ with lib.wyrdgard;
|
||||||
|
|
||||||
# Configure Home-Manager options from NixOS.
|
# Configure Home-Manager options from NixOS.
|
||||||
snowfallorg.user.cholli.home.config = {
|
snowfallorg.user.cholli.home.config = {
|
||||||
programs.kitty= {
|
programs.kitty = {
|
||||||
theme = "Tokyo Night";
|
theme = "Tokyo Night";
|
||||||
shellIntegration.enableFishIntegration = true;
|
shellIntegration.enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
wyrdgard = {
|
wyrdgard = {
|
||||||
apps = {
|
apps = {
|
||||||
|
|
Loading…
Reference in a new issue