Compare commits
2 commits
82dbf709aa
...
d24b786ffc
Author | SHA1 | Date | |
---|---|---|---|
d24b786ffc | |||
a1aeb26c6c |
5 changed files with 16 additions and 19 deletions
|
@ -13,7 +13,7 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
{ nixpkgs.overlays = [ inputs.nur.overlays.default ]; }
|
{ nixpkgs.overlays = [ inputs.nur.overlays.default ]; }
|
||||||
../base-linux.nix
|
../base.nix
|
||||||
../calendar.nix
|
../calendar.nix
|
||||||
../discord.nix
|
../discord.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
# 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,6 +7,7 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
inputs,
|
||||||
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
@ -68,6 +69,16 @@
|
||||||
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 = {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [ ../base-linux.nix ];
|
imports = [ ../base.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;
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
config,
|
config,
|
||||||
domains,
|
domains,
|
||||||
inputs,
|
inputs,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -23,4 +25,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
services = lib.mkIf pkgs.stdenv.isLinux { gnome-keyring.enable = true; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue