formatting
This commit is contained in:
parent
536b4f8449
commit
c2d3cd7274
4 changed files with 8 additions and 9 deletions
|
|
@ -115,7 +115,7 @@
|
|||
};
|
||||
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
pkgs = import nixpkgs { system = "aarch64-linux"; };
|
||||
pkgs = import nixpkgs {system = "aarch64-linux";};
|
||||
modules = [./hosts/atreus/configuration.nix];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
{
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
{config, ...}: {
|
||||
imports = [
|
||||
./tmux
|
||||
./git.nix
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# user.userName = lib.mkForce "osbm"; # fuck i hate unmaintained projects
|
||||
environment.packages = with pkgs; [
|
||||
vim # or some other editor, e.g. nano or neovim
|
||||
|
|
@ -46,4 +49,4 @@
|
|||
|
||||
# Set your time zone
|
||||
#time.timeZone = "Europe/Berlin";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,7 +38,6 @@
|
|||
inherit config pkgs;
|
||||
};
|
||||
|
||||
|
||||
# Enable networking
|
||||
networking.networkmanager.enable = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue