mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 02:22:18 +00:00
Compare commits
2 commits
cc9ccca5d1
...
9d267a82e6
Author | SHA1 | Date | |
---|---|---|---|
9d267a82e6 | |||
53541d972b |
9 changed files with 26 additions and 33 deletions
|
@ -28,7 +28,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, home-manager, ... } @ inputs:
|
||||
outputs = { self, nixpkgs, home-manager, ... } @inputs:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
lib = nixpkgs.lib // home-manager.lib;
|
||||
|
@ -73,11 +73,6 @@
|
|||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
"jbowdre@jammy-wsl" = lib.homeManagerConfiguration {
|
||||
modules = [ ./nix/home/jammy-wsl.nix ];
|
||||
pkgs = pkgsFor.x86_64-linux;
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
# Common CLI apps
|
||||
# Core CLI apps
|
||||
|
||||
imports = [
|
||||
./direnv.nix
|
||||
./go.nix
|
||||
./git.nix
|
||||
./fish.nix
|
||||
./tmux.nix
|
||||
|
@ -14,16 +12,8 @@
|
|||
babelfish # Lets fish speak bash
|
||||
bottom # Better top
|
||||
httpie # Better curl
|
||||
hugo # Static site generator
|
||||
jq # JSON pretty printer and manipulator
|
||||
nil # Nix LSP
|
||||
# nix-inspect # See which pkgs are in your Path
|
||||
nixfmt # Nix formatter
|
||||
packer # Hashicorp packer
|
||||
powershell # Powershell
|
||||
terraform # Hashicorp terraform
|
||||
tldr # TLDR pages
|
||||
trekscii # Cute startrek cli printer
|
||||
vault # Hashicorp vault
|
||||
];
|
||||
}
|
20
nix/home/features/cli/extras/default.nix
Normal file
20
nix/home/features/cli/extras/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, ... }: {
|
||||
# Extra CLI apps
|
||||
|
||||
imports = [
|
||||
../default.nix
|
||||
./direnv.nix
|
||||
./go.nix
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
hugo # Static site generator
|
||||
nil # Nix LSP
|
||||
# nix-inspect # See which pkgs are in your Path
|
||||
nixfmt # Nix formatter
|
||||
packer # Hashicorp packer
|
||||
terraform # Hashicorp terraform
|
||||
trekscii # Cute startrek cli printer
|
||||
vault # Hashicorp vault
|
||||
];
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
];
|
||||
|
||||
home = {
|
||||
# username override
|
||||
username = "jbowdre";
|
||||
packages = with pkgs; [
|
||||
vagrant
|
||||
wslu
|
||||
wsl-open
|
||||
];
|
||||
};
|
||||
}
|
|
@ -1,8 +1,9 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./lib/chromeos.nix
|
||||
./features/cli/extras
|
||||
./features/desktop/vscode.nix
|
||||
./lib/chromeos.nix
|
||||
];
|
||||
|
||||
# packages
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./features/cli/extras
|
||||
./features/desktop
|
||||
./lib/chromeos.nix
|
||||
];
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{ inputs, outputs, lib, config, pkgs, ... }: {
|
||||
imports = [
|
||||
./global
|
||||
./features/cli/extras
|
||||
./features/desktop
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue