#2 first somewhat working iteration, there seems to be a problem with home manager still
This commit is contained in:
parent
4a3a48af59
commit
236ff25b49
11 changed files with 118 additions and 16 deletions
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue