1
0
Fork 0

Compare commits

..

No commits in common. "d24b786ffca56de18e35cd33c6023df3d3fead4f" and "82dbf709aa5ccb4af53b3b778f8bf5d53f20863d" have entirely different histories.

5 changed files with 19 additions and 16 deletions

View file

@ -13,7 +13,7 @@
{ {
imports = [ imports = [
{ nixpkgs.overlays = [ inputs.nur.overlays.default ]; } { nixpkgs.overlays = [ inputs.nur.overlays.default ]; }
../base.nix ../base-linux.nix
../calendar.nix ../calendar.nix
../discord.nix ../discord.nix
]; ];

View file

@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
#
# SPDX-License-Identifier: MIT
{ pkgs, ... }:
{
imports = [ ./base.nix ];
home.packages = [
pkgs.acpi
pkgs.iproute2
pkgs.iputils
pkgs.julia
pkgs.lm_sensors
pkgs.psmisc
pkgs.strace
];
}

View file

@ -7,7 +7,6 @@
{ {
config, config,
inputs, inputs,
lib,
pkgs, pkgs,
... ...
}: }:
@ -69,16 +68,6 @@
pkgs.uutils-findutils pkgs.uutils-findutils
pkgs.wget pkgs.wget
pkgs.xz pkgs.xz
]
++ lib.optionals pkgs.stdenv.isLinux [
pkgs.acpi
pkgs.gcr
pkgs.iproute2
pkgs.iputils
pkgs.julia
pkgs.lm_sensors
pkgs.psmisc
pkgs.strace
]; ];
file = { }; file = { };
shellAliases = { shellAliases = {

View file

@ -10,7 +10,7 @@
... ...
}: }:
{ {
imports = [ ../base.nix ]; imports = [ ../base-linux.nix ];
sops.age.keyFile = "${homeDirectory}/.config/sops/age/keys.txt"; sops.age.keyFile = "${homeDirectory}/.config/sops/age/keys.txt";
home = { home = {
inherit username homeDirectory; inherit username homeDirectory;

View file

@ -6,8 +6,6 @@
config, config,
domains, domains,
inputs, inputs,
lib,
pkgs,
... ...
}: }:
{ {
@ -25,5 +23,4 @@
}; };
}; };
}; };
services = lib.mkIf pkgs.stdenv.isLinux { gnome-keyring.enable = true; };
} }