This repository has been archived on 2023-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
nixos/configuration.nix

52 lines
1,016 B
Nix
Raw Normal View History

2023-08-23 10:33:28 +00:00
{ config, pkgs, ... }:
2023-08-30 17:32:53 +00:00
let
stateVersion = "23.05";
in
2023-08-23 10:33:28 +00:00
{
imports =
2023-08-30 17:32:53 +00:00
[
2023-08-23 10:33:28 +00:00
./hardware-configuration.nix
<home-manager/nixos>
2023-08-23 10:33:28 +00:00
];
boot.loader.systemd-boot.enable = true;
2023-08-30 17:32:53 +00:00
networking.hostName = "x260";
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
2023-08-23 10:33:28 +00:00
services.xserver = {
enable = true;
2023-09-02 17:24:36 +00:00
displayManager.gdm = {
enable = true;
settings = {
daemon = {
AutomaticLoginEnable = true;
AutomaticLogin = "pim";
};
};
};
2023-08-28 09:24:53 +00:00
desktopManager.gnome.enable = true;
excludePackages = with pkgs; [ xterm ];
2023-08-23 10:33:28 +00:00
};
2023-08-30 17:56:01 +00:00
home-manager.users.pim = import ./home.nix {inherit pkgs stateVersion; };
2023-08-23 10:33:28 +00:00
users.users.pim = {
isNormalUser = true;
2023-08-30 17:32:53 +00:00
extraGroups = [ "wheel" ];
2023-08-23 10:33:28 +00:00
};
2023-08-30 17:32:53 +00:00
environment = {
systemPackages = with pkgs; [
vim
wget
curl
git
btop
];
gnome.excludePackages = with pkgs; [ gnome-tour gnome.epiphany gnome.geary ];
};
2023-08-23 10:33:28 +00:00
2023-08-30 17:32:53 +00:00
system.stateVersion = stateVersion;
2023-08-23 10:33:28 +00:00
}