Compare commits
No commits in common. "d24b786ffca56de18e35cd33c6023df3d3fead4f" and "82dbf709aa5ccb4af53b3b778f8bf5d53f20863d" have entirely different histories.
d24b786ffc
...
82dbf709aa
5 changed files with 19 additions and 16 deletions
|
@ -13,7 +13,7 @@
|
|||
{
|
||||
imports = [
|
||||
{ nixpkgs.overlays = [ inputs.nur.overlays.default ]; }
|
||||
../base.nix
|
||||
../base-linux.nix
|
||||
../calendar.nix
|
||||
../discord.nix
|
||||
];
|
||||
|
|
17
home-manager/base-linux.nix
Normal file
17
home-manager/base-linux.nix
Normal 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
|
||||
];
|
||||
}
|
|
@ -7,7 +7,6 @@
|
|||
{
|
||||
config,
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
|
@ -69,16 +68,6 @@
|
|||
pkgs.uutils-findutils
|
||||
pkgs.wget
|
||||
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 = { };
|
||||
shellAliases = {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
imports = [ ../base.nix ];
|
||||
imports = [ ../base-linux.nix ];
|
||||
sops.age.keyFile = "${homeDirectory}/.config/sops/age/keys.txt";
|
||||
home = {
|
||||
inherit username homeDirectory;
|
||||
|
|
|
@ -6,8 +6,6 @@
|
|||
config,
|
||||
domains,
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -25,5 +23,4 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
services = lib.mkIf pkgs.stdenv.isLinux { gnome-keyring.enable = true; };
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue