snowfall migration wip fixed user config
This commit is contained in:
parent
25774148e4
commit
aaf4ff29c4
8 changed files with 87 additions and 79 deletions
|
|
@ -23,20 +23,22 @@ in
|
|||
};
|
||||
};
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
gdb
|
||||
element-desktop
|
||||
obs-studio
|
||||
neovim
|
||||
localsend
|
||||
kdePackages.kdenlive
|
||||
] ++ lib.optionals osConfig.custom.presets.gaming.enable [mcpelauncher-ui-qt];
|
||||
packages = with pkgs;
|
||||
[
|
||||
gdb
|
||||
element-desktop
|
||||
obs-studio
|
||||
neovim
|
||||
localsend
|
||||
kdePackages.kdenlive
|
||||
]
|
||||
++ lib.optionals osConfig.custom.presets.gaming.enable [mcpelauncher-ui-qt];
|
||||
|
||||
sessionVariables = {
|
||||
EDITOR = "emacsclient -c";
|
||||
NH_OS_FLAKE = "${home}/nixos-config";
|
||||
NH_HOME_FLAKE = "${home}/nixos-config";
|
||||
NH_DARWIN_FLAKE = "${home}/nixos-config";
|
||||
NH_OS_FLAKE = "${home}/nixos-config";
|
||||
NH_HOME_FLAKE = "${home}/nixos-config";
|
||||
NH_DARWIN_FLAKE = "${home}/nixos-config";
|
||||
};
|
||||
|
||||
stateVersion = "25.05";
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
{osConfig, pkgs, ...}:
|
||||
{
|
||||
osConfig,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [kitty-themes];
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
|
|
@ -10,7 +13,7 @@
|
|||
enable = true;
|
||||
icons = "always";
|
||||
};
|
||||
programs.kitty = {
|
||||
programs.kitty = {
|
||||
enable = osConfig.custom.presets.workstation.enable;
|
||||
font = {
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue