moved some packages
This commit is contained in:
parent
bb0e1d7591
commit
896c688be4
10 changed files with 30 additions and 26 deletions
|
|
@ -14,7 +14,6 @@
|
||||||
|
|
||||||
horseman.username = "horseman";
|
horseman.username = "horseman";
|
||||||
|
|
||||||
|
|
||||||
networking.hostName = "luna";
|
networking.hostName = "luna";
|
||||||
|
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
|
|
||||||
|
|
@ -28,16 +28,10 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
direnv
|
|
||||||
docker-compose
|
|
||||||
ethtool
|
|
||||||
file
|
|
||||||
fzf
|
|
||||||
gcc
|
gcc
|
||||||
ghex
|
ghex
|
||||||
haskell.compiler.native-bignum.ghcHEAD
|
haskell.compiler.native-bignum.ghcHEAD
|
||||||
haskell-language-server
|
haskell-language-server
|
||||||
btop
|
|
||||||
jdk
|
jdk
|
||||||
jetbrains.clion
|
jetbrains.clion
|
||||||
jetbrains.idea-ultimate
|
jetbrains.idea-ultimate
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,12 @@ in {
|
||||||
services.lorri.enable = true;
|
services.lorri.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
direnv
|
||||||
|
docker-compose
|
||||||
|
ethtool
|
||||||
|
file
|
||||||
|
fzf
|
||||||
|
btop
|
||||||
gnupg
|
gnupg
|
||||||
neofetch
|
neofetch
|
||||||
sops
|
sops
|
||||||
|
|
|
||||||
|
|
@ -17,14 +17,7 @@ in {
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
overlays = [
|
config.allowUnfree = true;
|
||||||
# outputs.overlays.additions
|
|
||||||
# outputs.overlays.modifications
|
|
||||||
# outputs.overlays.unstable-packages
|
|
||||||
];
|
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
|
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,16 @@
|
||||||
{inputs, headless, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
headless,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./greeter/sddm.nix
|
./greeter/sddm.nix
|
||||||
./refind.nix
|
./refind.nix
|
||||||
|
|
||||||
( if headless then ./loader/grub.nix else ./loader/systemd.nix )
|
(
|
||||||
|
if headless
|
||||||
|
then ./loader/grub.nix
|
||||||
|
else ./loader/systemd.nix
|
||||||
|
)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,8 @@
|
||||||
{inputs, headless, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
headless,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./apps
|
./apps
|
||||||
./hardware
|
./hardware
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue