This commit is contained in:
joygnu 2024-09-22 14:45:18 +02:00
parent 996bb59f22
commit 8aa1b0ed0a
3 changed files with 8 additions and 11 deletions

View file

@ -30,7 +30,7 @@
in { in {
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration { nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
pkgs = import nixpkgs { system = "aarch64-linux"; }; pkgs = import nixpkgs { system = "aarch64-linux"; };
modules = [ .hosts/phone]; modules = [ ./hosts/phone];
}; };
nixosConfigurations = { nixosConfigurations = {

View file

@ -54,7 +54,13 @@
home-manager = { home-manager = {
config = ./home.nix; home.stateVersion = "24.05";
imports = [
./home
];
# config = ./home.nix;
}; };
user.shell = "${pkgs.zsh}/bin/zsh"; user.shell = "${pkgs.zsh}/bin/zsh";

View file

@ -1,9 +0,0 @@
{ pkgs, ... }:
{
home.stateVersion = "24.05";
imports = [
./home
];
}