mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 19:53:55 -05:00
moved user and system modules to host files
This commit is contained in:
parent
9513777433
commit
d6c2be09f7
|
@ -22,10 +22,6 @@
|
|||
# pkgs.libsForQt5.kwalletmanager
|
||||
];
|
||||
|
||||
services.flatpak.packages = [
|
||||
"com.github.tchx84.Flatseal"
|
||||
];
|
||||
|
||||
# Prefer baset set of gnome apps from Flatpaks.
|
||||
# environment.gnome.excludePackages = (with pkgs; [
|
||||
# baobab
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
# Pre-baked hardware support for various devices.
|
||||
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
||||
};
|
||||
};<nixos-hardware/framework/13-inch/7040-amd>
|
||||
|
||||
outputs = inputs@{ nixpkgs, home-manager, nixpkgs-unstable, home-manager-unstable, nix-flatpak, nixos-hardware, ... }: {
|
||||
|
||||
|
@ -45,8 +45,6 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/rustboro
|
||||
./system
|
||||
./users/aly
|
||||
./desktop/kde
|
||||
|
||||
# Add managed flatpak module.
|
||||
|
@ -69,8 +67,6 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/petalburg
|
||||
./system
|
||||
./users/aly
|
||||
./desktop/gnome
|
||||
|
||||
# Add managed flatpak module.
|
||||
|
@ -92,8 +88,6 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hosts/mauville
|
||||
./system
|
||||
./users/aly
|
||||
./desktop/gnome
|
||||
./modules/homelab
|
||||
./modules/steam
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../system
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../system
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -43,6 +43,8 @@ in {
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../system
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
../../users/aly
|
||||
../../system
|
||||
];
|
||||
|
||||
# Bootloader.
|
||||
|
|
Loading…
Reference in a new issue