mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
Reorganized mal
This commit is contained in:
parent
777d6d5233
commit
187ae3d98f
5 changed files with 18 additions and 2 deletions
|
|
@ -50,7 +50,20 @@
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
mal = nixpkgs.lib.nixosSystem {
|
mal = nixpkgs.lib.nixosSystem {
|
||||||
specialArgs = {inherit inputs outputs;};
|
specialArgs = {inherit inputs outputs;};
|
||||||
modules = [./nixos/mal/configuration.nix];
|
modules = [
|
||||||
|
./machines/mal/configuration.nix
|
||||||
|
|
||||||
|
lix-module.nixosModules.default
|
||||||
|
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
|
||||||
|
home-manager.extraSpecialArgs = {inherit inputs outputs;};
|
||||||
|
home-manager.users.tyler = import ./machines/mal/home.nix;
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
wash = nixpkgs.lib.nixosSystem {
|
wash = nixpkgs.lib.nixosSystem {
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [../common.nix];
|
imports = [
|
||||||
|
../../home/common.nix
|
||||||
|
../../home/helide
|
||||||
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "tyler";
|
username = "tyler";
|
||||||
Loading…
Add table
Add a link
Reference in a new issue