Update pinephone.nix

This commit is contained in:
Aaron Honeycutt 2023-09-17 21:26:16 +00:00
parent 4d6d305747
commit 681af7d90b

View file

@ -7,16 +7,27 @@
<mobile-nixos/examples/phosh/phosh.nix> <mobile-nixos/examples/phosh/phosh.nix>
]; ];
networking.hostName = "peebee"; fileSystems."/mnt/ExtraDrive" =
time.timeZone = "America/Denver"; { device = "/dev/disk/by-uuid/631d2b85-2e0b-4740-8b45-6147cf15193f";
fsType = "ext4";
};
# # Kernel changes
# Opinionated defaults # boot.kernelPackages = pkgs.linuxPackages_latest;
#
# Use Network Manager nix.settings.auto-optimise-store = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# NetworkManager
networking.wireless.enable = false; networking.wireless.enable = false;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.hostName = "peebee";
# SSH # SSH
services.openssh = { services.openssh = {
@ -43,9 +54,7 @@
user = "aaronh"; user = "aaronh";
}; };
# time.timeZone = "America/Denver";
# User configuration
#
users.users."aaronh" = { users.users."aaronh" = {
isNormalUser = true; isNormalUser = true;
@ -61,38 +70,22 @@
# GUI # GUI
packages = with pkgs; [ packages = with pkgs; [
deja-dup
foliate
headlines
gnome.gnome-clocks
gnome.gnome-calculator
gnome-feeds
gnome-photos
gnome-podcasts
lollypop
marker
phosh-mobile-settings
portfolio-filemanager portfolio-filemanager
spot
tootle
# CLI # CLI
grim grim
];
};
]; # Remove GNOME packages
};
# Remove non-friendly GNOME packages
environment.gnome.excludePackages = (with pkgs; [ environment.gnome.excludePackages = (with pkgs; [
gnome-photos gnome-photos
gnome-tour gnome-tour
]); ]);
# This value determines the NixOS release from which the default environment.systemPackages = (with pkgs; [
# settings for stateful data, like file locations and database versions # rest of your packages
# on your system were taken. Its perfectly fine and recommended to leave ]);
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
} }