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";
|
||||
|
||||
|
||||
networking.hostName = "luna";
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
};
|
||||
|
||||
terminal = {
|
||||
zsh.enable = true;
|
||||
zsh.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -17,11 +17,11 @@
|
|||
networking.hostName = "solis";
|
||||
|
||||
systemd.timers."backupSyncthing" = {
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnCalendar = "weekly";
|
||||
Persistent = true;
|
||||
};
|
||||
wantedBy = ["timers.target"];
|
||||
timerConfig = {
|
||||
OnCalendar = "weekly";
|
||||
Persistent = true;
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services."backupSyncthing" = {
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
imports = [
|
||||
../../modules
|
||||
../../modules/boot/loader/systemd.nix
|
||||
];
|
||||
];
|
||||
|
||||
config.horseman = {
|
||||
users.default.enable = true;
|
||||
|
|
|
|||
|
|
@ -28,16 +28,10 @@ in {
|
|||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
direnv
|
||||
docker-compose
|
||||
ethtool
|
||||
file
|
||||
fzf
|
||||
gcc
|
||||
ghex
|
||||
haskell.compiler.native-bignum.ghcHEAD
|
||||
haskell-language-server
|
||||
btop
|
||||
jdk
|
||||
jetbrains.clion
|
||||
jetbrains.idea-ultimate
|
||||
|
|
|
|||
|
|
@ -24,6 +24,12 @@ in {
|
|||
services.lorri.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
direnv
|
||||
docker-compose
|
||||
ethtool
|
||||
file
|
||||
fzf
|
||||
btop
|
||||
gnupg
|
||||
neofetch
|
||||
sops
|
||||
|
|
|
|||
|
|
@ -17,14 +17,7 @@ in {
|
|||
|
||||
config = {
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
# outputs.overlays.additions
|
||||
# outputs.overlays.modifications
|
||||
# outputs.overlays.unstable-packages
|
||||
];
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
|
||||
nix.registry = (lib.mapAttrs (_: flake: {inherit flake;})) ((lib.filterAttrs (_: lib.isType "flake")) inputs);
|
||||
|
|
|
|||
|
|
@ -1,8 +1,16 @@
|
|||
{inputs, headless, ...}: {
|
||||
{
|
||||
inputs,
|
||||
headless,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./greeter/sddm.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 = [
|
||||
./apps
|
||||
./hardware
|
||||
|
|
|
|||
|
|
@ -36,6 +36,6 @@ in {
|
|||
|
||||
home-manager.users.${homeCfg.username} = lib.mkIf (!headless) {
|
||||
imports = [./config.nix];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue