mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-05-07 13:36:24 +00:00
refactor: move common modules to modules/ directory
This commit is contained in:
parent
3abbd61cfa
commit
bf7e249d5b
35 changed files with 67 additions and 63 deletions
8
modules/programs/nh.nix
Normal file
8
modules/programs/nh.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
programs.nh = {
|
||||
enable = true;
|
||||
clean.enable = true;
|
||||
clean.extraArgs = "--keep-since 7d --keep 3";
|
||||
flake = "/home/toast/nix-config";
|
||||
};
|
||||
}
|
||||
3
modules/programs/nix-ld.nix
Normal file
3
modules/programs/nix-ld.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.nix-ld.enable = true;
|
||||
}
|
||||
5
modules/programs/ssh.nix
Normal file
5
modules/programs/ssh.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.ssh.startAgent = true;
|
||||
}
|
||||
5
modules/programs/ydotool.nix
Normal file
5
modules/programs/ydotool.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.ydotool.enable = true;
|
||||
}
|
||||
5
modules/programs/zsh.nix
Normal file
5
modules/programs/zsh.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.zsh.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue