mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
switched from discord to webcord
This commit is contained in:
parent
c56505cbbe
commit
5a88e315f0
3 changed files with 6 additions and 6 deletions
|
|
@ -7,9 +7,10 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
spicetify-nix.url = "github:the-argus/spicetify-nix";
|
spicetify-nix.url = "github:the-argus/spicetify-nix";
|
||||||
|
webcord.url = "github:fufexan/webcord-flake";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {self, nixpkgs, home-manager, spicetify-nix, ... }@inputs:
|
outputs = {self, nixpkgs, home-manager, spicetify-nix, webcord, ... }@inputs:
|
||||||
let
|
let
|
||||||
username = "gerg";
|
username = "gerg";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
@ -56,6 +57,7 @@
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
gerg-laptop = lib.nixosSystem {
|
gerg-laptop = lib.nixosSystem {
|
||||||
inherit system pkgs;
|
inherit system pkgs;
|
||||||
|
specialArgs = inputs;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./systems/laptop.nix
|
./systems/laptop.nix
|
||||||
|
|
@ -63,6 +65,7 @@
|
||||||
};
|
};
|
||||||
gerg-desktop = lib.nixosSystem {
|
gerg-desktop = lib.nixosSystem {
|
||||||
inherit system pkgs;
|
inherit system pkgs;
|
||||||
|
specialArgs = inputs;
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./systems/desktop.nix
|
./systems/desktop.nix
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"SKIP_HOST_UPDATE": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, callPackage, ... }:
|
{ config, pkgs, callPackage, webcord, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
wget
|
wget
|
||||||
|
|
@ -15,7 +15,6 @@ environment.systemPackages = with pkgs; [
|
||||||
alsa-utils
|
alsa-utils
|
||||||
btrfs-progs #for external harddrive
|
btrfs-progs #for external harddrive
|
||||||
#user/gui
|
#user/gui
|
||||||
(discord.override { nss = nss_latest; })
|
|
||||||
vlc
|
vlc
|
||||||
bitwarden
|
bitwarden
|
||||||
gimp
|
gimp
|
||||||
|
|
@ -43,5 +42,6 @@ environment.systemPackages = with pkgs; [
|
||||||
gcc #for neovim tree-sitter
|
gcc #for neovim tree-sitter
|
||||||
nix-tree
|
nix-tree
|
||||||
git-filter-repo
|
git-filter-repo
|
||||||
|
webcord.packages.${pkgs.system}.default
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue