aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/ginaz
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-04-12 23:48:26 -0700
committerMark Nipper <nipsy@bitgnome.net>2024-04-12 23:48:26 -0700
commit8f4ff719d0c17d294e7917eef418a4b13f7466b3 (patch)
tree621098050653eab7f1eafc564ecee8236f9819c6 /hosts/ginaz
parent3a44b124561f544c229c0042cd0b91d055a33409 (diff)
downloadnix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar.gz
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar.bz2
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar.lz
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar.xz
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.tar.zst
nix-8f4ff719d0c17d294e7917eef418a4b13f7466b3.zip
Update ginaz to new flake layout
Diffstat (limited to 'hosts/ginaz')
-rw-r--r--hosts/ginaz/default.nix11
-rw-r--r--hosts/ginaz/hardware-configuration.nix2
2 files changed, 7 insertions, 6 deletions
diff --git a/hosts/ginaz/default.nix b/hosts/ginaz/default.nix
index 998ca5d..9b306d1 100644
--- a/hosts/ginaz/default.nix
+++ b/hosts/ginaz/default.nix
@@ -1,4 +1,4 @@
-{ config, inputs, pkgs, ... }: {
+{ config, pkgs, ... }: {
boot = {
initrd.kernelModules = [ "amdgpu" "zfs" ];
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
@@ -17,13 +17,15 @@
environment.systemPackages = with pkgs; [
bc
bespokesynth
- bintools
+ binutils
cardinal
cargo
conntrack-tools
+ coreutils
curl
dmenu
dict
+ diffutils
dig
dmidecode
easyeffects
@@ -33,12 +35,14 @@
feh
ffmpeg
file
+ findutils
flac
fldigi
fluidsynth
foot
fortune
fping
+ gcc
gcr
geeqie
geonkick
@@ -59,6 +63,7 @@
iotop
ipcalc
iperf
+ iputils
jq
lame
libreoffice
@@ -157,8 +162,6 @@
];
imports = [
- inputs.hardware.nixosModules.lenovo-yoga-7-14ARH7.amdgpu
-
./hardware-configuration.nix
../common/core
../common/optional/google-authenticator.nix
diff --git a/hosts/ginaz/hardware-configuration.nix b/hosts/ginaz/hardware-configuration.nix
index a5ae455..f8a58f8 100644
--- a/hosts/ginaz/hardware-configuration.nix
+++ b/hosts/ginaz/hardware-configuration.nix
@@ -44,6 +44,4 @@
hardware.bluetooth.enable = true;
#hardware.bluetooth.powerOnBoot = true;
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}