sneeuwvlok/hosts/chris-pc/default.nix

79 lines
1.5 KiB
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./hardware.nix ];
fileSystems."/home/chris/games" = {
device = "/dev/disk/by-label/games";
fsType = "ext4";
};
fileSystems."/home/chris/data" = {
device = "/dev/disk/by-label/Data";
fsType = "ntfs-3g";
options = [ "rw" "uid=chris" ];
};
modules = {
themes = {
enable = true;
theme = "everforest";
polarity = "dark";
};
system.audio.enable = true;
networking.enable = true;
develop = {
rust.enable = true;
js.enable = true;
dotnet.enable = true;
};
# EXPERIMENTS
# services.games.minecraft.enable = true;
services.auth.enable = true;
desktop = {
plasma.enable = true;
type = "wayland";
applications = {
communication.enable = true;
email.enable = true;
office.enable = true;
steam.enable = true;
recording.enable = true;
};
terminal = {
default = "ghostty";
alacritty.enable = true;
ghostty.enable = true;
};
editors = {
default = "nano";
vscodium.enable = true;
zed.enable = true;
nvim.enable = true;
nano.enable = true;
kate.enable = true;
};
browsers = {
default = "chromium";
firefox.enable = true;
chrome.enable = true;
};
games = {
minecraft.enable = true;
};
};
shell = {
default = "zsh";
corePkgs.enable = true;
};
};
}