Fix on system flake
This commit is contained in:
@@ -11,21 +11,21 @@
|
|||||||
homeDirectory = /Users/alistreaza;
|
homeDirectory = /Users/alistreaza;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Apps
|
# Shell apps
|
||||||
home.shell.zsh = true;
|
home.shell.zsh = true;
|
||||||
home.shell.git = true;
|
home.shell.git = true;
|
||||||
home.shell.neovim = true;
|
home.shell.neovim = true;
|
||||||
|
home.shell.nh.enable = true;
|
||||||
|
home.shell.devenv.enable = true;
|
||||||
|
|
||||||
# Homebrew apps
|
# Homebrew apps
|
||||||
home.homebrew.iterm = true;
|
home.homebrew.iterm = true;
|
||||||
home.homebrew.zed = true;
|
home.homebrew.zed = true;
|
||||||
home.homebrew.jetbrain = true;
|
home.homebrew.jetbrain = true;
|
||||||
|
|
||||||
home.homebrew.iina = true;
|
home.homebrew.iina = true;
|
||||||
home.homebrew.zen = true;
|
home.homebrew.zen = true;
|
||||||
home.homebrew.obsidian = true;
|
home.homebrew.obsidian = true;
|
||||||
home.homebrew.microsoft = true;
|
home.homebrew.microsoft = true;
|
||||||
|
|
||||||
home.homebrew.keka = true;
|
home.homebrew.keka = true;
|
||||||
|
|
||||||
# No Home Application Folders
|
# No Home Application Folders
|
||||||
|
|||||||
@@ -11,10 +11,12 @@
|
|||||||
homeDirectory = "/home/alistreaza";
|
homeDirectory = "/home/alistreaza";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Apps
|
# Shell apps
|
||||||
home.shell.zsh = true;
|
home.shell.zsh = true;
|
||||||
home.shell.git = true;
|
home.shell.git = true;
|
||||||
home.shell.neovim = true;
|
home.shell.neovim = true;
|
||||||
|
home.shell.nh.enable = true;
|
||||||
|
home.shell.devenv.enable = true;
|
||||||
|
|
||||||
# Code editor
|
# Code editor
|
||||||
home.ide.zed.enable = true;
|
home.ide.zed.enable = true;
|
||||||
|
|||||||
@@ -26,10 +26,6 @@
|
|||||||
os.virtualisation.cuda.enable = true;
|
os.virtualisation.cuda.enable = true;
|
||||||
os.virtualisation.podman.enable = true;
|
os.virtualisation.podman.enable = true;
|
||||||
|
|
||||||
# Dev
|
|
||||||
os.shell.nh.enable = true;
|
|
||||||
os.shell.devenv.enable = true;
|
|
||||||
|
|
||||||
# Ssh
|
# Ssh
|
||||||
programs.ssh.enableAskPassword = false; # No-window git push fix
|
programs.ssh.enableAskPassword = false; # No-window git push fix
|
||||||
|
|
||||||
|
|||||||
@@ -6,10 +6,10 @@
|
|||||||
}:
|
}:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.os.shell.devenv;
|
cfg = config.home.shell.devenv;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.os.shell.devenv = {
|
options.home.shell.devenv = {
|
||||||
enable = mkEnableOption "System devenv service";
|
enable = mkEnableOption "System devenv service";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
{ lib, config, ... }:
|
{ lib, config, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.os.shell.nh;
|
cfg = config.home.shell.nh;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.os.shell.nh = {
|
options.home.shell.nh = {
|
||||||
enable = mkEnableOption "System nh service";
|
enable = mkEnableOption "System nh service";
|
||||||
};
|
};
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
Reference in New Issue
Block a user