mirror of
https://github.com/Noratrieb/nixos.git
synced 2026-01-17 05:05:06 +01:00
cleanup
This commit is contained in:
parent
bc6f9e293f
commit
6ab5c496f3
5 changed files with 114 additions and 141 deletions
|
|
@ -18,29 +18,11 @@ in
|
|||
|
||||
# You can also split up your configuration and import pieces of it here:
|
||||
# ./nvim.nix
|
||||
./git.nix
|
||||
./firefox.nix
|
||||
./vscode.nix
|
||||
];
|
||||
|
||||
/*nixpkgs = {
|
||||
# You can add overlays here
|
||||
overlays = [
|
||||
# If you want to use overlays exported from other flakes:
|
||||
# neovim-nightly-overlay.overlays.default
|
||||
|
||||
# Or define it inline, for example:
|
||||
# (final: prev: {
|
||||
# hi = final.hello.overrideAttrs (oldAttrs: {
|
||||
# patches = [ ./change-hello-to-hi.patch ];
|
||||
# });
|
||||
# })
|
||||
];
|
||||
# Configure your nixpkgs instance
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
# Workaround for https://github.com/nix-community/home-manager/issues/2942
|
||||
allowUnfreePredicate = (_: true);
|
||||
};
|
||||
};*/
|
||||
|
||||
home = {
|
||||
username = "nils";
|
||||
homeDirectory = "/home/nils";
|
||||
|
|
@ -80,10 +62,6 @@ in
|
|||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
programs.git = import ./git.nix { inherit pkgs; };
|
||||
programs.firefox = import ./firefox.nix { inherit pkgs; };
|
||||
programs.vscode = import ./vscode.nix { inherit pkgs; };
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
interactiveShellInit = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue