starting with some scala
This commit is contained in:
parent
531d8dde37
commit
4b9674d7c6
@ -256,6 +256,7 @@
|
||||
extraSpecialArgs = {
|
||||
stateVersion = "23.05";
|
||||
email = "motiejusja@wix.com";
|
||||
devEnvironment = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -52,7 +52,6 @@ in {
|
||||
base = {
|
||||
zfs.enable = true;
|
||||
users = {
|
||||
devEnvironment = true;
|
||||
passwd = {
|
||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||
|
@ -41,7 +41,6 @@
|
||||
base = {
|
||||
zfs.enable = true;
|
||||
users = {
|
||||
devEnvironment = true;
|
||||
passwd = {
|
||||
root.passwordFile = config.age.secrets.root-passwd-hash.path;
|
||||
motiejus.passwordFile = config.age.secrets.motiejus-passwd-hash.path;
|
||||
|
@ -7,11 +7,6 @@
|
||||
cfg = config.mj.base.users;
|
||||
in {
|
||||
options.mj.base.users = with lib.types; {
|
||||
devEnvironment = lib.mkOption {
|
||||
type = bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
passwd = lib.mkOption {
|
||||
type = attrsOf (submodule {
|
||||
options = {
|
||||
@ -63,9 +58,11 @@ in {
|
||||
home-manager.users.motiejus = {pkgs, ...}:
|
||||
lib.mkMerge [
|
||||
(import ../../../shared/home/default.nix {
|
||||
inherit lib;
|
||||
inherit pkgs;
|
||||
inherit (config.mj) stateVersion;
|
||||
email = "motiejus@jakstys.lt";
|
||||
devEnvironment = false;
|
||||
})
|
||||
{
|
||||
programs.bash = {
|
||||
|
@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
stateVersion,
|
||||
email,
|
||||
devEnvironment,
|
||||
...
|
||||
}: {
|
||||
home = {
|
||||
@ -11,7 +12,16 @@
|
||||
homeDirectory = "/home/motiejus";
|
||||
};
|
||||
|
||||
#home.packages = lib.mkIf cfg.devEnvironment [pkgs.go];
|
||||
home.packages =
|
||||
if devEnvironment
|
||||
then
|
||||
(with pkgs; [
|
||||
go
|
||||
|
||||
scala_2_12
|
||||
coursier
|
||||
])
|
||||
else [];
|
||||
|
||||
programs.direnv.enable = true;
|
||||
|
||||
@ -20,9 +30,22 @@
|
||||
vimAlias = true;
|
||||
vimdiffAlias = true;
|
||||
defaultEditor = true;
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
fugitive
|
||||
];
|
||||
plugins = with pkgs.vimPlugins;
|
||||
[
|
||||
fugitive
|
||||
]
|
||||
++ (
|
||||
if devEnvironment
|
||||
then [
|
||||
vim-go
|
||||
|
||||
zig-vim
|
||||
|
||||
nvim-metals
|
||||
plenary-nvim
|
||||
]
|
||||
else []
|
||||
);
|
||||
extraConfig = builtins.readFile ./vimrc;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user