dotfiles/system-nix/configuration.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, pkgs, config, modulesPath, specialArgs, ... }:
let hostname = specialArgs.hostname;
enableSSH = specialArgs.enableSSH or true;
2022-11-14 22:10:46 +00:00
networking = {hostName = hostname;} // (specialArgs.networking or {});
boot = specialArgs.boot or {};
services = specialArgs.services or {};
in
2022-08-30 14:29:44 +00:00
with lib;
{
imports = [
./profiles/${hostname}/hardware-configuration.nix
2022-08-30 14:29:44 +00:00
"${modulesPath}/profiles/minimal.nix"
];
2022-11-14 22:10:46 +00:00
inherit networking;
inherit boot;
inherit services;
2022-08-30 14:29:44 +00:00
2022-11-06 10:45:45 +00:00
system.stateVersion = "22.05";
2022-08-30 14:29:44 +00:00
# users.users.<defaultUser>.uid = 1000;
2022-11-06 20:23:10 +00:00
# networking.hostName = "nixos";
2022-08-30 14:29:44 +00:00
# Enable nix flakes
nix.package = pkgs.nixFlakes;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
2022-11-14 22:10:46 +00:00
users.users.hungtr = {
isNormalUser = true;
home = "/home/hungtr";
description = "pegasust/hungtr";
extraGroups = [ "wheel" "networkmanager" ];
openssh.authorizedKeys.keys = lib.strings.splitString "\n" (builtins.readFile ../ssh/authorized_keys);
2022-11-14 18:01:39 +00:00
};
2022-08-30 14:29:44 +00:00
2022-11-06 20:23:10 +00:00
# Some basic programs
2022-08-30 14:29:44 +00:00
programs.neovim = {
enable = true;
defaultEditor = true;
};
2022-11-14 18:01:39 +00:00
2022-08-30 14:29:44 +00:00
programs.git = {
enable = true;
# more information should be configured under user level
};
2022-11-14 18:01:39 +00:00
2022-08-30 14:29:44 +00:00
environment.systemPackages = [
pkgs.gnumake
2022-11-14 18:01:39 +00:00
pkgs.wget
pkgs.inetutils
pkgs.mtr
pkgs.sysstat
2022-08-30 14:29:44 +00:00
];
}
2022-11-14 18:01:39 +00:00