mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-24 05:07:00 -04:00
27 current 2024-04-21 21:14:55 24.05.20240419.5c24cf2 6.6.28 *
This commit is contained in:
parent
4b422ceacc
commit
674f8a20e1
3 changed files with 150 additions and 31 deletions
|
@ -74,23 +74,14 @@ services.xserver = {
|
|||
"networkmanager"
|
||||
"input" "tty"
|
||||
];
|
||||
packages = with pkgs; [
|
||||
google-chrome
|
||||
bitwarden
|
||||
spotify
|
||||
vscodium
|
||||
discord
|
||||
kitty
|
||||
rofi
|
||||
];
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
home-manager = {
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
users = {
|
||||
"meyer" = import ./home.nix;
|
||||
};
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# List packages installed in system profile. To search, run:
|
||||
# $ nix search wget
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, inputs,... }:
|
||||
|
||||
{
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
# nixpkg.config.allowUnfree = true;
|
||||
# manage.
|
||||
home.username = "meyer";
|
||||
home.homeDirectory = "/home/meyer";
|
||||
|
@ -20,6 +23,20 @@
|
|||
home.packages = [
|
||||
pkgs.hello
|
||||
pkgs.xsel
|
||||
pkgs.google-chrome
|
||||
pkgs.bitwarden
|
||||
pkgs.spotify
|
||||
pkgs.vscodium
|
||||
pkgs.discord
|
||||
pkgs.kitty
|
||||
pkgs.rofi
|
||||
pkgs.go
|
||||
pkgs.php
|
||||
pkgs.nodejs_21
|
||||
pkgs.temurin-jre-bin-8
|
||||
pkgs.cargo
|
||||
pkgs.lua
|
||||
pkgs.unzip
|
||||
# # It is sometimes useful to fine-tune packages, for example, by applying
|
||||
# # overrides. You can do that directly here, just don't forget the
|
||||
# # parentheses. Maybe you want to install Nerd Fonts with a limited number of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue