nix-home/home/nki-x1c1.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2022-04-19 23:36:11 +00:00
{ pkgs, config, lib, ... }:
2022-04-19 21:44:08 +00:00
{
imports = [
2022-04-19 23:36:11 +00:00
# Common configuration
./common.nix
# Set up X11-specific common configuration
# ./X11/default.nix
# ./X11/hidpi.nix # Enable hiDPI
# We use our own firefox
# ./firefox.nix
# osu!
# ./osu.nix
# Sway
./modules/programs/my-sway
# Alacritty
./X11/alacritty.nix
2022-04-19 21:44:08 +00:00
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home.username = "nki";
home.homeDirectory = "/home/nki";
# More packages
home.packages = (with pkgs; [
2022-04-19 23:36:11 +00:00
# CLI stuff
python
zip
# TeX
texlive.combined.scheme-full
2022-04-19 21:44:08 +00:00
2022-04-19 23:36:11 +00:00
# Java & sbt
openjdk11
sbt
2022-04-19 21:44:08 +00:00
]);
2022-04-19 23:36:11 +00:00
# Enable sway
programs.my-sway.enable = true;
programs.my-sway.fontSize = 14.0;
2022-04-19 23:41:17 +00:00
programs.my-sway.wallpaper = ./images/wallpaper_0.png;
2022-04-19 23:36:11 +00:00
2022-04-19 21:44:08 +00:00
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.05";
}