44 lines
792 B
Nix
44 lines
792 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [ inputs.stylix.nixOnDroidModules.stylix ];
|
|
environment.packages = with pkgs; [
|
|
vim # or some other editor, e.g. nano or neovim
|
|
git
|
|
sequoia-sq
|
|
openssh
|
|
pinentry-tty
|
|
which
|
|
procps
|
|
killall
|
|
diffutils
|
|
findutils
|
|
utillinux
|
|
tzdata
|
|
hostname
|
|
man
|
|
gnugrep
|
|
gnupg
|
|
gnused
|
|
gnutar
|
|
bzip2
|
|
gzip
|
|
xz
|
|
zip
|
|
unzip
|
|
];
|
|
|
|
environment.etcBackupExtension = ".bak";
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
nix.extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
|
|
time.timeZone = "America/Chicago";
|
|
home-manager.config = (import ../../home-manager/personal/base.nix);
|
|
}
|