mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
44 lines
1020 B
Nix
44 lines
1020 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
{
|
||
imports = [ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
<niveum/configs/default.nix>
|
||
<niveum/configs/battery.nix>
|
||
{
|
||
programs.steam.enable = true;
|
||
nixpkgs.config.steam.java = true;
|
||
}
|
||
];
|
||
|
||
|
||
niveum = {
|
||
batteryName = "BAT0";
|
||
wirelessInterface = "wlp3s0";
|
||
promptColours.success = "cyan";
|
||
};
|
||
|
||
networking.useDHCP = false;
|
||
networking.interfaces = {
|
||
enp0s25.useDHCP = true;
|
||
wlp3s0.useDHCP = true;
|
||
wwp0s20u4i6.useDHCP = true;
|
||
};
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
git vim
|
||
];
|
||
|
||
networking.retiolum = {
|
||
ipv4 = "10.243.2.85";
|
||
ipv6 = "42:0:3c46:ac99:ae36:cb8:c551:ba27";
|
||
};
|
||
|
||
networking.hostName = "manakish";
|
||
|
||
system.stateVersion = "20.09"; # Did you read the comment?
|
||
}
|