Unified home and system modules!
This commit is contained in:
50
hosts/reykjavik/default.nix
Normal file
50
hosts/reykjavik/default.nix
Normal file
@@ -0,0 +1,50 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./hardware.nix
|
||||
./nvidia.nix
|
||||
];
|
||||
|
||||
# - Basic --------------------------------------
|
||||
|
||||
user.name = "marc";
|
||||
user.shell = pkgs.zsh;
|
||||
networking.hostName = "reykjavik";
|
||||
|
||||
# - Bootloader ---------------------------------
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
|
||||
# - Modules ------------------------------------
|
||||
|
||||
samfelag.modules = {
|
||||
# - Common -----------------------------------
|
||||
# See modules/common.nix for common packages installed
|
||||
|
||||
# - System -----------------------------------
|
||||
system.bluetooth.enable = true;
|
||||
|
||||
# - Desktop ----------------------------------
|
||||
desktop = {
|
||||
enable = true;
|
||||
laptop = true;
|
||||
|
||||
};
|
||||
|
||||
# - Editors and development ------------------
|
||||
editors.emacs.enable = true;
|
||||
|
||||
dev.git.userName = "marc";
|
||||
dev.git.userEmail = "marc@sastre.cat";
|
||||
|
||||
# - Other apps -------------------------------
|
||||
app.spotify.enable = true;
|
||||
|
||||
# - Gaming -----------------------------------
|
||||
gaming.lutris.enable = true;
|
||||
gaming.steam.enable = true;
|
||||
app.discord.enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user