mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
updates
This commit is contained in:
parent
91afd10859
commit
a13bfb05e5
1 changed files with 6 additions and 14 deletions
|
|
@ -1,15 +1,12 @@
|
|||
{
|
||||
description = "Flakes once again";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager/release-25.05";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, nixpkgs-unstable, home-manager, ... }:
|
||||
let
|
||||
outputs = { nixpkgs, nixpkgs-unstable, home-manager, ... }: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs { inherit system; };
|
||||
pkgs-unstable = import nixpkgs-unstable { inherit system; };
|
||||
|
|
@ -23,17 +20,12 @@
|
|||
home-manager.useUserPackages = true;
|
||||
home-manager.users.coast = import ./home.nix;
|
||||
home-manager.backupFileExtension = "backup";
|
||||
}
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
(lib.hiPrio pkgs.uutils-coreutils-noprefix)
|
||||
(pkgs.runCommand "vim-wrapper" { } ''
|
||||
mkdir -p $out/bin
|
||||
ln -s ${pkgs.neovim}/bin/nvim $out/bin/vim
|
||||
'')
|
||||
} { environment.systemPackages = with pkgs; [
|
||||
(lib.hiPrio pkgs-unstable.uutils-coreutils-noprefix)
|
||||
(pkgs.runCommand "vim-wrapper" { } '' mkdir -p $out/bin; ln -s ${pkgs.neovim}/bin/nvim $out/bin/vim '')
|
||||
pkgs-unstable.firefox
|
||||
adwaita-icon-theme
|
||||
pkgs-unstable.git
|
||||
pkgs-unstable.adwaita-icon-theme
|
||||
];
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue