formatting

This commit is contained in:
Osman Faruk Bayram 2025-02-18 22:35:45 +03:00
parent 536b4f8449
commit c2d3cd7274
4 changed files with 8 additions and 9 deletions

View file

@ -115,7 +115,7 @@
}; };
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration { nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
extraSpecialArgs = {inherit inputs outputs;}; extraSpecialArgs = {inherit inputs outputs;};
pkgs = import nixpkgs { system = "aarch64-linux"; }; pkgs = import nixpkgs {system = "aarch64-linux";};
modules = [./hosts/atreus/configuration.nix]; modules = [./hosts/atreus/configuration.nix];
}; };

View file

@ -1,7 +1,4 @@
{ {config, ...}: {
config,
...
}: {
imports = [ imports = [
./tmux ./tmux
./git.nix ./git.nix

View file

@ -1,6 +1,9 @@
{ config, lib, pkgs, ... }:
{ {
config,
lib,
pkgs,
...
}: {
# user.userName = lib.mkForce "osbm"; # fuck i hate unmaintained projects # user.userName = lib.mkForce "osbm"; # fuck i hate unmaintained projects
environment.packages = with pkgs; [ environment.packages = with pkgs; [
vim # or some other editor, e.g. nano or neovim vim # or some other editor, e.g. nano or neovim

View file

@ -38,7 +38,6 @@
inherit config pkgs; inherit config pkgs;
}; };
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;