Separate out coding software configurations
This commit is contained in:
26
coding.nix
Normal file
26
coding.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [pkgs.vscode];
|
||||
|
||||
programs = {
|
||||
git = {
|
||||
enable = true;
|
||||
lfs.enable = true;
|
||||
config = {
|
||||
init.defaultBranch = "master";
|
||||
user = {
|
||||
email = "git@nettika.cat";
|
||||
name = "Nettika";
|
||||
};
|
||||
credential.helper = "store";
|
||||
};
|
||||
};
|
||||
nano = {
|
||||
enable = true;
|
||||
nanorc = ''
|
||||
set autoindent
|
||||
set linenumbers
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
@@ -4,6 +4,7 @@
|
||||
./hardware.nix
|
||||
./networking.nix
|
||||
./users.nix
|
||||
./coding.nix
|
||||
];
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
@@ -13,11 +14,8 @@
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
nano
|
||||
git
|
||||
lshw
|
||||
firefox
|
||||
vscode
|
||||
];
|
||||
|
||||
services.xserver = {
|
||||
@@ -36,12 +34,5 @@
|
||||
dedicatedServer.openFirewall = true;
|
||||
};
|
||||
|
||||
programs.nano = {
|
||||
nanorc = ''
|
||||
set autoindent
|
||||
set linenumbers
|
||||
'';
|
||||
};
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
Reference in New Issue
Block a user