mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
This commit completely restructures the flake. Hosts are now seperate from profile configuration files in hosts/[system]. Nixos and Darwin configurations will be built when present in the respective folders in hosts/
40 lines
780 B
Nix
40 lines
780 B
Nix
{ pkgs, ... }: {
|
|
environment = {
|
|
packages = with pkgs; [
|
|
vim
|
|
git
|
|
openssh
|
|
# toybox
|
|
dig
|
|
man
|
|
gnupg
|
|
];
|
|
|
|
etcBackupExtension = ".bak";
|
|
extraOutputsToInstall = [
|
|
"doc"
|
|
"info"
|
|
"devdoc"
|
|
];
|
|
motd = null;
|
|
};
|
|
|
|
|
|
android-integration = {
|
|
termux-open.enable = true;
|
|
xdg-open.enable = true;
|
|
termux-open-url.enable = true;
|
|
termux-reload-settings.enable = true;
|
|
termux-setup-storage.enable = true;
|
|
};
|
|
|
|
# Backup etc files instead of failing to activate generation if a file already exists in /etc
|
|
|
|
# Read the changelog before changing this value
|
|
system.stateVersion = "23.05";
|
|
|
|
# Set up nix for flakes
|
|
nix.extraOptions = ''
|
|
experimental-features = nix-command flakes
|
|
'';
|
|
}
|