user specifics
This commit is contained in:
parent
1b1bd60f4b
commit
eaa2e08f5d
28 changed files with 946 additions and 51 deletions
|
@ -3,10 +3,6 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager/release-24.11";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
mods_common.url = "../../modules/common";
|
||||
mods_common.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -15,15 +11,16 @@
|
|||
mods_de_cosmic.inputs.nixpkgs-stable.follows = "nixpkgs";
|
||||
mods_de_cosmic.inputs.nixpkgs.follows = "nixpkgs";
|
||||
mods_ros_neovim.url = "../../modules/neovim";
|
||||
mods_row_stormd.url = "../../modules/stormd";
|
||||
mods_ros_stormd.url = "../../modules/stormd";
|
||||
mods_nebula.url = "../../modules/nebula";
|
||||
mods_home-manager.url = "../../modules/home_manager";
|
||||
mods_home-manager.inputs.home-manager.url = "github:rycee/home-manager/release-24.11";
|
||||
mods_home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager,
|
||||
mods_boot_systemd,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
|
@ -48,16 +45,80 @@
|
|||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
(
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
../../components/nix/lua.nix
|
||||
../../components/nix/rust-repl.nix
|
||||
../../components/nix/qflipper.nix
|
||||
../../components/nix/qdirstat.nix
|
||||
];
|
||||
mods = {
|
||||
common = {
|
||||
systemName = configuration_name;
|
||||
allowUnfree = true;
|
||||
primaryUser = "josh";
|
||||
docker = true;
|
||||
zsh = true;
|
||||
users = {
|
||||
josh = {
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILMzgAe4od9K4EsvH2g7xjNU7hGoJiFJlYcvB0BoDCvn nix2oren"
|
||||
];
|
||||
initialPassword = "password1";
|
||||
isNormalUser = true;
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"networkmanager"
|
||||
"video"
|
||||
"input"
|
||||
];
|
||||
shell = pkgs.zsh;
|
||||
packages = with pkgs; [
|
||||
# blender
|
||||
google-chrome
|
||||
# comma
|
||||
discordo
|
||||
discord
|
||||
# nautilus qimgv # file browsing (not needed in cosmic)
|
||||
firefox-esr
|
||||
# freecad
|
||||
# ladybird
|
||||
# ollama
|
||||
# vlc
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
home_manager = {
|
||||
users = {
|
||||
josh = {
|
||||
imports = [
|
||||
../../components/hm/tmux/tmux.nix
|
||||
../../components/hm/alacritty.nix
|
||||
../../components/hm/atuin.nix
|
||||
../../components/hm/direnv.nix
|
||||
../../components/hm/git.nix
|
||||
# ../../components/hm/launcher_rofi.nix # not needed in cosmic
|
||||
../../components/hm/nix_deprecations.nix
|
||||
../../components/hm/postgres.nix
|
||||
../../components/hm/ssh.nix
|
||||
../../components/hm/starship.nix
|
||||
../../components/hm/zoxide.nix
|
||||
../../components/hm/zsh.nix
|
||||
];
|
||||
};
|
||||
root = {
|
||||
imports = [
|
||||
# ../../components/hm/atuin.nix
|
||||
../../components/hm/nix_deprecations.nix
|
||||
../../components/hm/postgres.nix
|
||||
../../components/hm/starship.nix
|
||||
../../components/hm/zoxide.nix
|
||||
../../components/hm/zsh.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue