ref(nix): refactored out common

This commit is contained in:
Léana 江 2024-02-12 17:47:12 +01:00 committed by Léana 江
parent 66f6c5a702
commit 4662ca2acc
5 changed files with 12 additions and 7 deletions

View file

@ -1,5 +1,5 @@
{audio-lint, ...}: {
imports = [./dev.nix ./fonts.nix ../common];
imports = [./dev.nix ./fonts.nix];
home.homeDirectory = "/Users/leana";
home.packages = [

View file

@ -1,5 +1,5 @@
{pkgs, ...}: {
imports = [./dev.nix ./gui ./browser.nix ../common];
imports = [./dev.nix ./gui ./browser.nix];
home.packages = with pkgs; [
zip

View file

@ -1,6 +1,4 @@
{...}: {
imports = [../common];
home = {
username = "ubuntu";
homeDirectory = "/home/ubuntu";

View file

@ -1,3 +1,2 @@
{...}: {
imports = [../common];
}