dev modules
This commit is contained in:
parent
341b40d02d
commit
da871dabf3
6 changed files with 80 additions and 7 deletions
|
@ -8,6 +8,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../default.nix
|
../../default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# required for hostname specific configurations
|
# required for hostname specific configurations
|
||||||
networking.hostName = "sakotop"; # Define your hostname.
|
networking.hostName = "sakotop"; # Define your hostname.
|
||||||
|
|
||||||
|
@ -39,6 +40,10 @@
|
||||||
editors = {
|
editors = {
|
||||||
nvim.enable = true;
|
nvim.enable = true;
|
||||||
};
|
};
|
||||||
|
cc.enable = true;
|
||||||
|
javascript.enable = true;
|
||||||
|
python.enable = true;
|
||||||
|
rust.enable = true;
|
||||||
};
|
};
|
||||||
shell = {
|
shell = {
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -63,13 +68,6 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
extraGroups = [ "wheel" "networkmanager" ]; # Enable ‘sudo’ for the user.
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
gcc
|
|
||||||
python3
|
|
||||||
python310Packages.pip
|
|
||||||
rustup
|
|
||||||
cargo
|
|
||||||
nodejs
|
|
||||||
yarn
|
|
||||||
newsboat
|
newsboat
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
20
modules/dev/cc.nix
Normal file
20
modules/dev/cc.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.dev.cc;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.dev.cc = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
gcc
|
||||||
|
gnumake
|
||||||
|
cmake
|
||||||
|
clang
|
||||||
|
gdb
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,9 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./editors
|
./editors
|
||||||
|
./cc.nix
|
||||||
|
./javascript.nix
|
||||||
|
./python.nix
|
||||||
|
./rust.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
17
modules/dev/javascript.nix
Normal file
17
modules/dev/javascript.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.dev.javascript;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.dev.javascript = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
nodejs
|
||||||
|
yarn
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
17
modules/dev/python.nix
Normal file
17
modules/dev/python.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.dev.python;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.dev.python = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
python3
|
||||||
|
python310Packages.pip
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
17
modules/dev/rust.nix
Normal file
17
modules/dev/rust.nix
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.dev.rust;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.dev.rust= {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
rustup
|
||||||
|
cargo
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue