diff --git a/flake.nix b/flake.nix index 0f6e3ca..553bfb7 100644 --- a/flake.nix +++ b/flake.nix @@ -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]; }; diff --git a/home/home.nix b/home/home.nix index 55c623c..93f7d00 100644 --- a/home/home.nix +++ b/home/home.nix @@ -1,7 +1,4 @@ -{ - config, - ... -}: { +{config, ...}: { imports = [ ./tmux ./git.nix diff --git a/hosts/atreus/configuration.nix b/hosts/atreus/configuration.nix index d2732c9..a00170f 100644 --- a/hosts/atreus/configuration.nix +++ b/hosts/atreus/configuration.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"; -} \ No newline at end of file +} diff --git a/hosts/ymir/configuration.nix b/hosts/ymir/configuration.nix index 51503d9..ea87433 100644 --- a/hosts/ymir/configuration.nix +++ b/hosts/ymir/configuration.nix @@ -38,7 +38,6 @@ inherit config pkgs; }; - # Enable networking networking.networkmanager.enable = true;