add a config for generic linuxes

This commit is contained in:
Andreas Zweili 2021-11-18 12:11:46 +01:00
parent 4918e21ca6
commit 3e0f2ecec9
2 changed files with 9 additions and 1 deletions

View File

@ -22,5 +22,5 @@
};
};
# raw config files
home.file.".bashrc".source = ./personal_config/bashrc;
# home.file.".bashrc".source = ./personal_config/bashrc;
}

8
home/ubuntu.nix Normal file
View File

@ -0,0 +1,8 @@
{config, pkgs, ...}:
{
imports = [
./personal-desktop.nix
];
programs.bash.enable = true;
targets.genericLinux.enable = true;
}