#2 first somewhat working iteration, there seems to be a problem with home manager still

This commit is contained in:
Christoph Hollizeck 2024-03-26 17:28:20 +01:00
parent 19d03b20c5
commit 0be4728958
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
11 changed files with 118 additions and 16 deletions

View file

@ -1,7 +1,7 @@
{ pkgs
, config
, ...
}: {
{ pkgs , config , lib, ... }:
with lib;
with lib.wyrdgard;
{
imports = [ ./hardware.nix ];
boot.loader.systemd-boot.enable = true;
@ -21,7 +21,6 @@
gitAndTools.gh
kitty
fish
vim
vivaldi
fd
@ -46,8 +45,27 @@
xkbVariant = "";
};
environment.variables.EDITOR = "nvim";
environment.variables.SUDOEDITOR = "nvim";
# Configure Home-Manager options from NixOS.
snowfallorg.user.cholli.home.config = { };
snowfallorg.user.cholli.home.config = {
programs.kitty= {
theme = "Tokyo Night";
shellIntegration.enableFishIntegration = true;
};
};
wyrdgard = {
apps = {
discord = enabled;
vivaldi = enabled;
};
submodules = {
basics = enabled;
};
};
system.stateVersion = "23.11";
}