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

58 lines
1.2 KiB
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";
2023-09-02 18:49:50 +00:00
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/release-${stateVersion}.tar.gz";
2023-08-30 17:32:53 +00:00
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
2023-09-02 18:49:50 +00:00
(import "${home-manager}/nixos")
2023-08-23 10:33:28 +00:00
];
2023-09-04 05:28:36 +00:00
boot = {
loader.systemd-boot.enable = true;
kernelParams = [ "i915.enable_psr=0" ];
};
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
2023-09-02 18:53:16 +00:00
ripgrep
2023-08-30 17:32:53 +00:00
];
2023-09-04 05:17:50 +00:00
gnome.excludePackages = with pkgs; [ gnome-tour gnome.epiphany gnome.geary gnome-console ];
2023-08-30 17:32:53 +00:00
};
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
}