mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
49 lines
917 B
Nix
49 lines
917 B
Nix
{ pkgs, inputs, config, ... }:
|
|
{
|
|
imports = [
|
|
./modules.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "light";
|
|
};
|
|
|
|
# Users
|
|
# Don't forget to add a password or change the username
|
|
users.users = {
|
|
light = { # Here
|
|
isNormalUser = true;
|
|
# You can change the description too !
|
|
description = "A lightweight system for lowend or performance machines";
|
|
shell = pkgs.zsh;
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
# Home-Manager config
|
|
#home-manager = {
|
|
# extraSpecialArgs = { inherit inputs; };
|
|
# useGlobalPkgs = true;
|
|
# useUserPackages = true;
|
|
# backupFileExtension = "HM-backup";
|
|
# users = {
|
|
# # Change this to your username
|
|
# "light" = import ./home.nix;
|
|
# };
|
|
#};
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
wget
|
|
git
|
|
];
|
|
};
|
|
|
|
}
|