Fix imports in refactor
This commit is contained in:
parent
cc95386f1a
commit
73142b1bdf
8 changed files with 38 additions and 34 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
import = [
|
||||
imports = [
|
||||
./games
|
||||
./input-remapper
|
||||
./librewolf
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
import = [
|
||||
imports = [
|
||||
./anime-launcher
|
||||
./steam
|
||||
];
|
||||
|
|
|
|||
8
nixosModules/apps/shells/default.nix
Normal file
8
nixosModules/apps/shells/default.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./fish
|
||||
./xonsh
|
||||
];
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
import = [
|
||||
imports = [
|
||||
./apps
|
||||
./services
|
||||
];
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
import = [
|
||||
imports = [
|
||||
./graphics
|
||||
./networking
|
||||
./pipewire
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
import = [
|
||||
imports = [
|
||||
./bluetooth
|
||||
./wireless
|
||||
];
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
system.stateVersion = "23.05";
|
||||
|
||||
config = {
|
||||
pipewire.enable = true;
|
||||
polkit.enable = true;
|
||||
bluetooth.enable = true;
|
||||
|
|
@ -24,5 +23,4 @@
|
|||
librewolf.enable = true;
|
||||
xonsh.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
nixpkgs.config.allowUnfree = true;
|
||||
system.stateVersion = "23.05";
|
||||
|
||||
config = {
|
||||
nvidia.enable = true;
|
||||
pipewire.enable = true;
|
||||
polkit.enable = true;
|
||||
|
|
@ -28,5 +27,4 @@
|
|||
aagl.enable = true;
|
||||
aagl.honkai-rail = true;
|
||||
input-remapper.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue